配列の初期値を与えて、以下の関数の計算によってそのあとの各配列値をそれぞれ計算した結果を二重配列として出力する関数を書いたのですが、期待する結果と異なっています。なぜこのようになるのかわかりません。また、どのように変更すれば期待する結果を得られるでしょうか?
javascript
1 2function calc(init) { 3 4 const maxStep = 5 5 let tmp = init 6 let res = [] 7 let step = 0 8 9 res.push(init) 10 while(step < maxStep) { 11 tmp[0] = init[0] + 1 12 tmp[1] = init[1] - 1 13 step += 1 14 res.push(tmp) 15 } 16 return res 17} 18 19console.log(calc([0,0])) 20// expected:[[0,0],[1,-1],[2,-2],[3,-3],[4,-4],[5,-5]] 21// result:[[5,-5],[5,-5],[5,-5],[5,-5],[5,-5],[5,-5]] 22
回答にも書きましたが、得られたresult自体が正しくないようです。
回答2件
あなたの回答
tips
プレビュー