📅  最后修改于: 2022-03-11 15:04:25.193000             🧑  作者: Mango
代码示例6
let numbers = ['one', 'two', 'three', 'four'];
numbers.forEach((num) => {
console.log(num);
}); // one //two //three // four