// 这是一个数组
var myArray = [1, 2, 3, 4, 5];
// 使用forEach遍历数组,匿名函数作为参数传递
myArray.forEach(function(item, index) {
console.log('Index: ' + index + ', Value: ' + item);
});
function setValue 只是对 匿名函数 指定了名字,但本质上还是匿名函数
// 这是一个数组
var myArray = [1, 2, 3, 4, 5];
// 使用forEach遍历数组,匿名函数作为参数传递
myArray.forEach(function(item, index) {
console.log('Index: ' + index + ', Value: ' + item);
});
function setValue 只是对 匿名函数 指定了名字,但本质上还是匿名函数