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