Answers for "js array return first 5 items"

1

return last two values of array in javascript

arr.slice(Math.max(arr.length - 5, 1))
Posted by: Guest on March-01-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 "js array return first 5 items"

Code answers related to "Javascript"

Browse Popular Code Answers by Language