我收到一点奇怪的错误。
我正在尝试随机选择数组的索引,所以为了做到这一点,我使用下面的代码:
myArray[Math.floor(Math.random*myArray.length)]
myArray.length是282,但Math.floor(Math.random*myArray.length)
是NaN,myArray[Math.floor(Math.random*myArray.length)
未定义。
有什么想法?
答案 0 :(得分:9)
Math.random
是一个应该是Math.random()
尝试
myArray[Math.floor(Math.random()*myArray.length)]
答案 1 :(得分:0)