Note: This feature is available in Web Workers.
The entries() method of the CSSNumericArray interface returns a new array iterator that yields [index, value] pairs for each item in the object.
entries()None.
A new iterable iterator.
const sum = new CSSMathSum(CSS.px(10), CSS.em(5), CSS.percent(50));
for (const [index, value] of sum.values.entries()) {
console.log(index, value.toString());
}
// 0 "10px"
// 1 "5em"
// 2 "50%"