References

Array.sort()

Leírás

Visszatér az eredeti Array példány valamilyen függvény szerint rendezett formájával.

Szintaxis

sort()
sort(compareFn)

Példa

const months = ['March', 'Jan', 'Feb', 'Dec']
months.sort()
console.log(months)
// Expected output: Array ["Dec", "Feb", "Jan", "March"]
 
const array1 = [1, 30, 4, 21, 100000]
array1.sort()
console.log(array1)
// Expected output: Array [1, 100000, 21, 30, 4]
in this article
back to top