PHP
·
发表于 5年以前
·
阅读量:8292
var numbers = [4, 9, 16, 25];
numbers.forEach(myFunction);
function myFunction(item, index) {
console.log(index,item);
}