Answers for "js foreach determine if last"

1

js foreach determine if last

arr = [1, 2, 3]; 

arr.forEach(function(i, idx, array){
   if (idx === array.length - 1){ 
       console.log("Last callback call at index " + idx + " with value " + i ); 
   }
});
Posted by: Guest on March-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language