📜  遍历数组 javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:12.538000             🧑  作者: Mango

代码示例6
var txt = "";
var numbers = [45, 4, 9, 16, 25];
numbers.forEach(myFunction);

function myFunction(value, index, array) {
  txt = txt + value + "
"; }