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的值作为一个数组输出呢??
好吧,其实x=>x+x是个简写,等价于x=>{return x+x;};forEach里return会终止遍历的