初心者です。
二次元配列のデータの書き換え方について、
"tomatos" > "cabbages"に書き換えたい場合、
下記spliceが効かなかったのですが、
arisaRefrigerator.splice([1][2],0,"cabbages")
一旦、index[1]を別の新規配列に代入してといった処理が必要になりますでしょうか?
JavaScript
1const arisaRefrigerator = [ 2 [ 3 // juice 4 "orange", 5 "apple", 6 "coke", 7 "milk", 8 ],[ 9 // vegetables 10 "carrots", 11 "cucumbers", 12 "tomatos" 13 ],[ 14 // foods 15 "cooked pasta", 16 "curry", 17 "potato salada" 18 ] 19];```
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/04 17:12