这是我正在运行的代码:
var random = math.random();
function randomTest() {
if (random<0.33) {
document.write("first")
}
else if (random<0.40) {
document.write("second")
}
else if (random<0.80) {
document.write("third")
}
else {
document.write("last")
}
}
document.write(randomTest());
只是尝试用math.random和函数测试一些东西,因为我是一个初学者,并且想知道为什么在我运行它时没有写入文档。感谢任何帮助,非常感谢。