我试图调用一个函数的每一行数组,这是一个数组本身。到目前为止,我总是得到一个错误与我的代码,我似乎无法理顺。谁能告诉我怎么做才对?输出应该是"[' a ', 4], [b, 1], [' j ', 2], [' c ', 3], [' d ', 5],[‘e’,2],[f 2],[‘g’,6]"。
var testqueue = [['a', 4], ['b', 1], ['j', 2], ['c', 3], ['d', 5], ['e', 2], ['f', 2], ['g', 6]];
function test(cb){
testqueue.foreach(function(item){
console.log(item);
});
cb('done');
}
test(function(result){
console.log(result);
});
对不起,只是个打字错误:(
应该是forEach(大写E),一切正常