3 回答

TA貢獻(xiàn)1793條經(jīng)驗(yàn) 獲得超6個(gè)贊
Math.random 是方法,所以你忘記了括號(hào) ()。這是如何實(shí)現(xiàn)它的片段
var num = Math.floor(Math.random() * Math.floor(10))
function getNum() {
return Math.floor(Math.random() * Math.floor(10));
}
var num2 = getNum();
console.log('num = ' + num + 'num2 = ' + num2);

TA貢獻(xiàn)1871條經(jīng)驗(yàn) 獲得超8個(gè)贊
如果您打算讓它生成隨機(jī)數(shù),您需要實(shí)際調(diào)用 (即)Math.randomMath.random()
var num = Math.floor(Math.random() * 10)
function getNum() {
return Math.floor(Math.random() * 10);
}
var num2 = getNum();
console.log('num = ' + num + 'num2 = ' + num2);

TA貢獻(xiàn)1863條經(jīng)驗(yàn) 獲得超2個(gè)贊
Math.random
是一種方法,而不是屬性,因此您需要將其稱為Math.random()
. 您在第一行之后還缺少一個(gè)分號(hào)。
添加回答
舉報(bào)