map与forEach, 为什么第3个无效
let arr0=[1,2,3,5,0,9,1000,294,85,3850]; console.log(arr0.map(x=>x+x)); arr0.map(x=>console.log(x+x)); console.log(arr0.forEach(x=>x+x)); // ?? arr0.forEach(x=>console.log(x+x));
怎样才能把forEach的值作为一个数组输出呢??
狐的传说
相关分类