Answers for "array last element fetching"

105

javascript get last element of array

var foods = ["kiwi","apple","banana"];
var banana = foods[foods.length - 1]; // Getting last element
Posted by: Guest on June-20-2020
1

js get last element of array

var last_element = my_array[my_array.length - 1];
Posted by: Guest on January-01-2021
0

getting array last element fetching

let arry = [2, 4, 6, 8, 10, 12, 14, 16];
console.time('array length property');
let lastElement = arry[arry.length - 1];
console.log(lastElement);
console.timeEnd('array length property');

console.time('array slice method');
let lastElement1 = arry.slice(-1);
console.log(lastElement1);
console.timeEnd('array slice method');

console.time('array pop method');
let lastElement2 = arry.pop();
console.log(lastElement2);
console.timeEnd('array pop method');

//Output:

//16
//array length property: 13.798ms
//[ 16 ]
//array slice method: 8.839ms
//16
//array pop method: 0.138ms
Posted by: Guest on August-25-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language