在JavaScript中,可以使用forEach
方法遍歷數組元素。以下是一個示例:
const arr = ['apple', 'banana', 'cherry'];
arr.forEach(function(element, index, array) {
console.log('Element at index ' + index + ' is: ' + element);
});
或者使用箭頭函數簡化代碼:
const arr = ['apple', 'banana', 'cherry'];
arr.forEach((element, index, array) => {
console.log('Element at index ' + index + ' is: ' + element);
});
在這個示例中,forEach
方法接受一個回調函數作為參數。回調函數又接受三個參數:當前元素(element)、當前元素的索引(index)和原數組(array)。在回調函數中,我們可以對每個數組元素執行所需的操作。