Js.ArraySourceJavaScript Array API
returns a new array with the elements in reversed order. (ES2023)
the JS default comparator coerces elements to strings, which requires runtime type info. Use toSortedWith instead.
returns a new array with the elements sorted in ascending order. (ES2023)
returns a new array with some elements removed and/or replaced at a given index. (ES2023)
returns a new array with elements removed starting at the start index. (ES2023)
returns a new array with count elements removed starting at the start index. (ES2023)
returns the element at the given index. Negative indices count back from the end of the array. (ES2022)