程式碼中的變數莫名奇妙的被清空,如下圖所示:
#程式碼如下:
function rolldiceSumProb(arr, sides){
let prob, result=[];
let dig = function(target, count, methods) {
if (count > sides) return false
console.log('dig', target, count)
for (let i=1; i<=6; i++) {
console.log('target:', target, 'count:', count, 'cur_i:', i, target+i==arr, sides==count)
if (target+i==arr && sides==count) {
methods.push(i)
result.push(methods)
console.log(methods, result, 'quit')
methods.pop()
return false
}
else {
methods.push(i)
if (target+i < arr) dig(target+i, count+1, methods)
methods.pop()
}
}
}
dig(0, 1, [])
console.log('res', result)
return prob;
}
rolldiceSumProb(11, 2)
methods
一直都是用的同一個…雖然它被加到result
裡了,但是只是添加的引用,並不是複製了一個的, 以你可以添加個複製的結果,比如或用 es5 文法
你傳入result的是method的引用,如果你清空了method,result自然就沒有值了,你需要把method複製一份傳入result。