how to find last element in array in javascript // 1. Array.prototype.length const arr = [1,2,3,4,5]; console.log(arr[arr.length - 1]); // Result: 5 // 2.
確定! 回上一頁