我有一个疑问,我有2个数组
A=[2,2,3];
我通过推入值来创建两个数组。但是当我将第二个数组与foreach一起使用时,我没有显示值。
b.foreach((test,index)=>{
console.log(test+"_0");
}
)
我正在使用这种格式提取值。 是错的吗?需要更改任何内容吗?
答案 0 :(得分:0)
答案 1 :(得分:0)
forEach 始终位于camelCase中,
看到这个
b.forEach((test,index) =>{
console.log(test+"_"+index);
});