我有:
while (i < l) {
if (one === two) { continue; }
i++;
}
Run Code Online (Sandbox Code Playgroud)
但JSLint说:
第1行第20个问题:意外'继续'.
Run Code Online (Sandbox Code Playgroud)if (one === two) { continue; }
我犯了什么错误?应该如何我的代码真的看?
添加参数会有什么变化Math.random()?
例如:
Math.random() == Math.random(1234)
Run Code Online (Sandbox Code Playgroud)