@前端开发工程师 js中,以下内容的结果是什么?以及为什么?
list = [1,3,2];
list = Array(5).reduce((initialValue, current) => initialValue.concat(list), []);
1