javascript array sort reverse code example
Example 1: reversing an array in js
var arr=[1,2,5,6,2]
arr.reverse()
Example 2: how to reverse an array in javascript
array = [1 2, 3]
reversed = array.reverse()
Example 3: javascript sort descending
function sortEggsInNest(a, b) {
return a > b ? -1 : b > a ? 1 : 0;
}