Skip to main content

CSSNumericArray

The CSSNumericArray interface of the CSS Typed Object Model API contains a list of CSSNumericValue objects.

MDN Reference

Indexable

[index: number]: CSSNumericValue

Methods

[iterator]()

iterator: ArrayIterator<CSSNumericValue>;

Returns

ArrayIterator<CSSNumericValue>


entries()

entries(): ArrayIterator<[number, CSSNumericValue]>;

Returns

ArrayIterator<[number, CSSNumericValue]>


forEach()

forEach(callbackfn, thisArg?): void;

Parameters

ParameterType
callbackfn(value, key, parent) => void
thisArg?any

Returns

void


keys()

keys(): ArrayIterator<number>;

Returns

ArrayIterator<number>


values()

values(): ArrayIterator<CSSNumericValue>;

Returns

ArrayIterator<CSSNumericValue>

Properties

length

readonly length: number;

The read-only length property of the CSSNumericArray interface returns the number of CSSNumericValue objects in the list.

MDN Reference