...但是当我在控制台中调用该函数时,它返回未定义。我是 JavaScript 新手,所以我可能犯了一个基本错误,如果有人能帮助我,我会很感激 :-)。
这是代码:
var randomPrint = function(){
x = Math.floor(Math.random() * 100);
y = Math.floor(Math.random() * 100);
z = Math.floor(Math.random() * 100);
console.log(x, y, z);
if(x > y && x > z)
{
console.log("The greatest number is" + " " + x);
}
else if(y > z && y > x)
{
console.log("The greatest number is" + " " + y);
}
else if(z > y && z > x)
{
console.log("The greatest number is" + " " + z);
}
};
randomPrint();