UNPKG

@aldoivan10/linked-array

Version:
9 lines (6 loc) 328 B
import { LinkedArray } from ".." const numArray = new LinkedArray(5, 3, 8, 1, 9) const sortedNumArrayAsc = numArray.sorted() // numArray.sorted({ order: "asc" }) console.log(sortedNumArrayAsc) // [1, 3, 5, 8, 9] const sortedNumArrayDesc = numArray.sorted({ order: "desc" }) console.log(sortedNumArrayDesc) // [9, 8, 5, 3, 1]