var a=new Array;
for (j=0;j<=10;j++) {
a[j]=Math.floor(Math.random()*99)+2
}
var check=Math.floor(Math.random()*99)+2
check
では、値がa[j]
(つまりa[0]
to ) であるかどうかを確認するにはどうすればよいa[10]
でしょうか? 良い簡単な方法は?
var a=new Array;
for (j=0;j<=10;j++) {
a[j]=Math.floor(Math.random()*99)+2
}
var check=Math.floor(Math.random()*99)+2
check
では、値がa[j]
(つまりa[0]
to ) であるかどうかを確認するにはどうすればよいa[10]
でしょうか? 良い簡単な方法は?