Выберите Final 2 индекса в JS

var array = [1,5,7,8,10,12,23,24];

console.log(array.slice(-2));
 Run code snippet
crimbus