Note: This feature is available in Web Workers.
The forEach() method of the CSSUnparsedValue interface executes a provided function once for each item in the object.
forEach(callbackFn)
forEach(callbackFn, thisArg)callbackFnThe function to execute for each element, taking three arguments:
currentValueThe item being processed.
index OptionalThe index of the current element being processed.
array OptionalThe CSSUnparsedValue that forEach() is being called on.
thisArg OptionalValue to use as this when executing callbackFn.
None (undefined).
const value = new CSSUnparsedValue(["1em", "#445566", "-45px"]);
value.forEach((fragment, index) => {
console.log(index, fragment);
});
// 0 "1em"
// 1 "#445566"
// 2 "-45px"