我试图用数组的每一行调用一个函数,这是一个数组本身。到目前为止,我的代码总是出错,我似乎无法理顺。有人能告诉我怎么做对吗? 输出应该是" [' a',4],[' b',1],[' j',2],[&# 39; 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);
});
答案 0 :(得分:0)
对不起,这只是一个错字:(
它应该是forEach(大写字母E),一切正常。