Articles tagged: polyfill
Found 21 documents
- Web/CSS/object-fit The object-fit CSS property specifies how the contents of a replaced element should be fitted to ...
- Web/JavaScript/Reference/Global_Objects/Array/copyWithin The copyWithin() method shallow copies part of an array to another location in the same array ...
- Web/JavaScript/Reference/Global_Objects/Array/every The every() method tests whether all elements in the array pass the test implemented by the ...
- Web/JavaScript/Reference/Global_Objects/Array/fill The fill() method fills all the elements of an array from a start index to an end index with a ...
- Web/JavaScript/Reference/Global_Objects/Array/filter The filter() method creates a new array with all elements that pass the test implemented by the ...
- Web/JavaScript/Reference/Global_Objects/Array/find The find() method returns a value in the array, if an element in the array satisfies the ...
- Web/JavaScript/Reference/Global_Objects/Array/findIndex The findIndex() method returns an index in the array, if an element in the array satisfies the ...
- Web/JavaScript/Reference/Global_Objects/Array/from The Array.from() method creates a new Array instance from an array-like or iterable object.
- Web/JavaScript/Reference/Global_Objects/Array/includes The includes() method determines whether an array includes a certain element, returning true or ...
- Web/JavaScript/Reference/Global_Objects/Array/indexOf The indexOf() method returns the first index at which a given element can be found in the array, ...
- Web/JavaScript/Reference/Global_Objects/Array/isArray The Array.isArray() determines whether the passed value is an Array.
- Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf The lastIndexOf() method returns the last index at which a given element can be found in the ...
- Web/JavaScript/Reference/Global_Objects/Array/map The map() method creates a new array with the results of calling a provided function on every ...
- Web/JavaScript/Reference/Global_Objects/Array/of The Array.of() method creates a new Array instance with a variable number of arguments, ...
- Web/JavaScript/Reference/Global_Objects/Array/ReduceRight The reduceRight() method applies a function against an accumulator and each value of the array ...
- Web/JavaScript/Reference/Global_Objects/Date/now The Date.now() method returns the number of milliseconds elapsed since 1 January 1970 00:00:00 UTC.
- Web/JavaScript/Reference/Global_Objects/Date/toISOString The toISOString() method returns a string in simplified extended ISO format (ISO 8601), which is ...
- Web/JavaScript/Reference/Global_Objects/Function/bind The bind() method creates a new function that, when called, has its this keyword set to the ...
- Web/JavaScript/Reference/Global_Objects/JSON The JSON object contains methods for parsing JavaScript Object Notation (JSON) and converting ...
- Web/JavaScript/Reference/Global_Objects/Object/assign The Object.assign() method is used to copy the values of all enumerable own properties from one ...
- Web/JavaScript/Reference/Global_Objects/Object/create The Object.create() method creates a new object with the specified prototype object and properties.