Note: This feature is available in Web Workers.
The CSSTransformValue.forEach() method executes a provided function once for each element of the CSSTransformValue.
forEach(callbackFn)
forEach(callbackFn, thisArg)callbackFnThe function to execute for each element, taking three arguments:
currentValueThe value of the current element being processed.
index OptionalThe index of the current element being processed.
array OptionalThe CSSTransformValue that forEach() is being called on.
thisArg OptionalValue to use as this (i.e., the reference Object) when executing callback.
None (undefined).
To Do