参数 => 函数体
var arr = [1, 3, 5, 7]; arr.forEach(item=>console.log(item)) // arr.forEach(function(item){ // console.log(item); // })
0