変数を持つ配列を作成したいのですが、この変数は与えられたtime.Herの後にthemselveを変更する必要があります。誰かが私のコードです。時間の経過とともに変数が変更された配列
var cookieArray = new Array(window.setInterval(myCallback, 2000));
function myCallback() {
cookie1 = Math.floor((Math.random() * 810) + 0);
cookie2 = Math.floor((Math.random() * 810) + 0);
cookie3 = Math.floor((Math.random() * 810) + 0);
cookie4 = Math.floor((Math.random() * 810) + 0);
cookie5 = Math.floor((Math.random() * 810) + 0);
cookie6 = Math.floor((Math.random() * 810) + 0);
cookie7 = Math.floor((Math.random() * 810) + 0);
cookie8 = Math.floor((Math.random() * 810) + 0);
cookie9 = Math.floor((Math.random() * 810) + 0);
cookie10 = Math.floor((Math.random() * 810) + 0);
}
PS:あなたは配列を作成、それを初期化していなかった
ああ大丈夫感謝を。 – Yuto