如果用for循环只输出最后一个
es6好像有循环这样数组的方法,具体是哪个忘了,求解答
const array = [[
'a1'
,
'b1'
'c1'
], [
'a2'
'b2'
'c2'
'a3'
'b3'
'c3'
]];
for
(let i
in
array) {
(let ii
array[i]) {
let item = array[i][ii];
console.log(item)
}
拿去 不谢!
for in ,for of ,或者object.keys.forEach
你是在找 forEach 吗?不过for循环为啥不行呢。。