CSSNumericArray: keys() method

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Want more browser support for this feature? Tell us why.

Note: This feature is available in Web Workers.

The keys() method of the CSSNumericArray interface returns a new array iterator that yields the index of each item in the object.

Syntax

js
keys()

Parameters

None.

Return value

A new iterable iterator.

Examples

Iterating over indexes

js
const sum = new CSSMathSum(CSS.px(10), CSS.em(5), CSS.percent(50));

for (const index of sum.values.keys()) {
  console.log(index);
}
// 0
// 1
// 2

Specifications

Specification
CSS Typed OM Level 1
# cssnumericarray

Browser compatibility

See also