Answers for "javascript pop out one index"

1

how to get the last element in javascript

const nums = [1, 2, 3, 4, 5, 6, 7];
const lastOne = nums[nums.lenght - 1]; // last element of array
Posted by: Guest on May-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 "Javascript"

Browse Popular Code Answers by Language