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