How can I get top 5 max elements from array of ints with the standard library of es2015? Thanks for help.
Use the Array. slice() method to get the first N elements of an array, e.g. const first3 = arr. slice(0, 3) . The slice() method will return a new array containing the first N elements of the original array.
A solution in ES6 :
values = [1,65,8,98,689,12,33,2,3,789];
var topValues = values.sort((a,b) => b-a).slice(0,5);
console.log(topValues); // [789,689,98,65,33]
Many others exist, ask if you need more
[2, 6, 8, 1, 10, 11].sort((a, b) => b - a).slice(0,5)
[11, 10, 8, 6, 2]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With