[1, 55, 77, 88] // ...would return [55, 77, 88]
aggiungendo altri esempi:
[1, 55, 77, 88, 99, 22, 33, 44] // ...would return [88, 99, 22, 33, 44]
[1] // ...would return []
arr.slice(1).slice(-5)
[1, 55, 77, 88] // ...would return [55, 77, 88]
aggiungendo altri esempi:
[1, 55, 77, 88, 99, 22, 33, 44] // ...would return [88, 99, 22, 33, 44]
[1] // ...would return []
arr.slice(1).slice(-5)
Risposte:
Puoi chiamare:
arr.slice(Math.max(arr.length - 5, 1))
Se non si desidera escludere il primo elemento, utilizzare
arr.slice(Math.max(arr.length - 5, 0))
arr.slice(1).slice(-5)
>.>. inoltre alcuni di voi non sono riusciti a leggere il titolo poiché l'OP ha voluto escludere il primo risultato dell'array: |
arr.slice(Math.max(arr.length - 5, 0))
?
1
e non 0
.
Eccone uno che non ho visto, che è ancora più breve
arr.slice(1).slice(-5)
Esegui lo snippet di codice di seguito per provare che fa quello che vuoi
var arr1 = [0, 1, 2, 3, 4, 5, 6, 7],
arr2 = [0, 1, 2, 3];
document.body.innerHTML = 'ARRAY 1: ' + arr1.slice(1).slice(-5) + '<br/>ARRAY 2: ' + arr2.slice(1).slice(-5);
Un altro modo per farlo sarebbe usare lodash https://lodash.com/docs#rest - questo è ovviamente se non ti dispiace dover caricare un enorme file minimizzato javascript se stai provando a farlo dal tuo browser.
_.slice(_.rest(arr), -5)
Prova questo:
var array = [1, 55, 77, 88, 76, 59];
var array_last_five;
array_last_five = array.slice(-5);
if (array.length < 6) {
array_last_five.shift();
}
var y = [1,2,3,4,5,6,7,8,9,10];
console.log(y.slice((y.length - 5), y.length))
Puoi farlo!
Modo ES6:
Uso l' assegnazione destrutturante per l'array per ottenere first
e gli rest
elementi rimanenti e quindi prenderò gli ultimi cinque del metodo rest
with slice :
const cutOffFirstAndLastFive = (array) => {
const [first, ...rest] = array;
return rest.slice(-5);
}
cutOffFirstAndLastFive([1, 55, 77, 88]);
console.log(
'Tests:',
JSON.stringify(cutOffFirstAndLastFive([1, 55, 77, 88])),
JSON.stringify(cutOffFirstAndLastFive([1, 55, 77, 88, 99, 22, 33, 44])),
JSON.stringify(cutOffFirstAndLastFive([1]))
);