我試圖做一個二維數組了兩個一維數組,此代碼:的JavaScript多維數組未定義的對象錯誤
var PassAssoArr = new Array();
for(k in PassPourcentNames) {
PassAssoArr[k][0] = PassPourcentNames[k]
PassAssoArr[k][1] = PassPourcentValue[k]
}
但是,我得到錯誤信息:「未定義爲空或不是對象「,它指向for語句後的第一行。 PassPourcentNames和PassPourcentValue具有相同數量的元素,並且這些值都不爲空。第一個包含字符串和第二個整數。
任何幫助都非常令人滿意。