Firefox Tomorrow

web api instance method

KeyboardLayoutMap: entries() method

View on MDN ↗

Limited availability

The entries() method of the KeyboardLayoutMap interface returns a new Iterator object that contains the key/value pairs, in the same order as that provided by a for...in loop (the difference being that a for-in loop enumerates properties in the prototype chain as well).

The method is otherwise the same as entries().

Syntax

entries()

Parameters

None.

Return value

A new Iterator object.

Examples

The following example iterates every location- or layout-specific string and its associated keyboard code on an English QWERTY keyboard.

navigator.keyboard.getLayoutMap().then((keyboardLayoutMap) => {
  for (const [code, key] of keyboardLayoutMap.entries()) {
    console.log(`${code} keyboard code represents ${key} key`);
  }
});

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also