Chrome控制台打印出功能源代码而不是执行某些操作

时间:2017-02-09 16:34:16

标签: javascript google-chrome sublimetext2

我正在尝试在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
}

1 个答案:

答案 0 :(得分:0)

您必须使用括号delete执行代码。这是你工作的例子。结果在控制台中写“完成”。

functionName()