Array by copy
Newly available since 2023-07-04
The toReversed()
, toSorted()
, toSpliced()
, and with()
methods of arrays and typed arrays return changed copies of arrays. They stand in contrast to methods such as sort()
or reverse()
that change arrays in place.
To learn more, see
Array.prototype.toReversed(),
Array.prototype.toSorted(),
Array.prototype.toSpliced(),
Array.prototype.with() at MDN.
Compatibility
- Chrome 110 Released on 2023-02-07
- Chrome Android 110 Released on 2023-02-07
- Edge 110 Released on 2023-02-09
- Firefox 115 Released on 2023-07-04
- Firefox for Android 115 Released on 2023-07-04
- Safari 16 Released on 2022-09-12
- Safari on iOS 16 Released on 2022-09-12
Specifications
- ECMAScript Language Specification (#sec-array.prototype.toreversed), from TC39 (Ecma International).
- ECMAScript Language Specification (#sec-array.prototype.tosorted), from TC39 (Ecma International).
- ECMAScript Language Specification (#sec-array.prototype.tospliced), from TC39 (Ecma International).
- ECMAScript Language Specification (#sec-array.prototype.with), from TC39 (Ecma International).
- ECMAScript Language Specification (#sec-%25typedarray%25.prototype.toreversed), from TC39 (Ecma International).
- ECMAScript Language Specification (#sec-%25typedarray%25.prototype.tosorted), from TC39 (Ecma International).
- ECMAScript Language Specification (#sec-%25typedarray%25.prototype.with), from TC39 (Ecma International).