+ 3
JavaScript sort 2D array
So I have an array in JS which looks something like this: let arr = [["p1",5],["p2",7],["p3",2]] How would I sort it in descending order by the second value? So that it would look like this: [["p3",2],["p1",5],["p2",7]] Thanks!
3 Answers
+ 6
let sorted = arr.sort((a,b) => a[1] - b[1]);
https://code.sololearn.com/WLQdSKrduwtm/?ref=app
+ 3
By the way, your specifications is ascending order instead of descending order.
+ 2
Thank you! đ