Answers for "jquery slice array"

15

array.slice

const animals = ['ant', 'bison', 'camel', 'duck', 'elephant'];

console.log(animals.slice(2));
// expected output: Array ["camel", "duck", "elephant"]

console.log(animals.slice(2, 4));
// expected output: Array ["camel", "duck"]

console.log(animals.slice(1, 5));
// expected output: Array ["bison", "camel", "duck", "elephant"]
Posted by: Guest on July-30-2020
3

array index javascript show only first 2 elements

array.slice(0, n);
Posted by: Guest on January-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language