Answers for "javascript array find from end"

5

how to get the end of an array javascript

let arr = [1, 2, 3, 4, 5, 6, 7, 8];
let last = arr.pop();

console.log(last);
//8


console.log("https://discord.gg/5yjWgMS")
Posted by: Guest on June-15-2020
0

js detect end of array

var group = ["a","b","c","d"];
var groupLength = group.length;

while (groupLength--) {
    var item = group[groupLength];

    if(groupLength == 0){
        console.log("Last iteration with item : " + item);
    }
}
Posted by: Guest on July-13-2020

Code answers related to "javascript array find from end"

Code answers related to "Javascript"

Browse Popular Code Answers by Language