1. Array.prototype.find

    The `find()` method returns the value of the first item in the array based on the result of the provided testing function.

  2. Array.prototype.findIndex

    The `findIndex()` method returns the index of the first element in the array that satisfies the provided testing function.

  3. flat & flatMap array methods

    Methods to flatten any sub-arrays found in an array by concatenating their elements.

  4. Array.prototype.includes

    Determines whether or not an array includes the given value, returning a boolean value (unlike `indexOf`).

  5. CSS Filter Effects

    Method of applying filter effects using the `filter` property to elements, matching filters available in SVG. Filter functions include blur, brightness, contrast, drop-shadow, grayscale, hue-rotate, invert, opacity, sepia and saturate.

  6. Shared Array Buffer

    Type of ArrayBuffer that can be shared across Workers.

  7. Typed Arrays

    JavaScript typed arrays provide a mechanism for accessing raw binary data much more efficiently. Includes: `Int8Array`, `Uint8Array`, `Uint8ClampedArray`, `Int16Array`, `Uint16Array`, `Int32Array`, `Uint32Array`, `Float32Array` & `Float64Array`

  8. css property: offset-path: support for `ray()` function as a value

  9. types: `ray()`

  10. types: `ray()`: `at <position>`

  11. types: `ray()`: `<size>`

  12. javascript built-in: array

  13. javascript built-in: arraybuffer

  14. javascript built-in: array: at

  15. javascript built-in: array: concat

  16. javascript built-in: array: every

  17. javascript built-in: array: fill

  18. javascript built-in: array: filter

  19. javascript built-in: array: flat

  20. javascript built-in: array: from

  21. javascript built-in: array: join

  22. javascript built-in: array: keys

  23. javascript built-in: array: length

  24. javascript built-in: array: map

  25. javascript built-in: array: of

  26. javascript built-in: array: pop

  27. javascript built-in: array: push

  28. javascript built-in: array: shift

  29. javascript built-in: array: slice

  30. javascript built-in: array: some

  31. javascript built-in: array: sort

  32. javascript built-in: array: with

  33. grammar: array literals (`[1, 2, 3]`)