我正在尝试在Javascript上制作简单的二十一点游戏。我真的不明白为什么功能不能正常工作?
var OurHand = 0;
var TheirHand = 0;
function dealCards() {
OurHand += Math.floor(Math.random() * 10) + 1
OurHand += Math.floor(Math.random() * 10) + 1
TheirHand += Math.floor(Math.random() * 10) + 1
TheirHand += Math.floor(Math.random() * 10) + 1
}
答案 0 :(得分:0)
您必须使用括号delete
执行代码。这是你工作的例子。结果在控制台中写“完成”。
functionName()