-3
如何將字符串推送到數組中的數組中?將字符串插入陣列中某個位置的數組
var outerArray = [[]]
outerArray.push('test1')
outerArray.push('test2')
outerArray[0] = outerArray[0].push('test3')
console.log(outerArray[0][0])
這只是返回undefined
您發佈的代碼不起作用: -/ –
@FabianLauer oups,更新了它 – Bostrot