Answers for "javascript this last"

38

javascript last element of array

let arr = [1,2,3]
arr[arr.length - 1] //returns last element in an array
Posted by: Guest on June-16-2020
0

last element array

if (!Array.prototype.last){
    Array.prototype.last = function(){
        return this[this.length - 1];
    };
};
Posted by: Guest on December-26-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language