arr = [1,2,3];
arr.forEach(function(i){
// last iteration
});
ループが終了したときにキャッチする方法は?できますif(i == 3)
が、配列の番号がわからない場合があります。
arr = [1,2,3];
arr.forEach(function(i){
// last iteration
});
ループが終了したときにキャッチする方法は?できますif(i == 3)
が、配列の番号がわからない場合があります。
回答:
2018 ES6 +の回答は次のとおりです:
const arr = [1, 2, 3];
arr.forEach((val, key, arr) => {
if (Object.is(arr.length - 1, key)) {
// execute last item logic
console.log(`Last callback call at index ${key} with value ${val}` );
}
});
const arr= [1, 2, 3]
arr.forEach(function(element){
if(arr[arr.length-1] === element){
console.log("Last Element")
}
})
let o = { val:"ue" } ; let arr = [ o, 1, o ]; ...
残念ながら、最初の反復は次のようになりますarr[arr.length-1] === element
arr