本文介绍了意外的“继续"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有:
while (i < l) {
if (one === two) { continue; }
i++;
}
但是JSLint说:
if (one === two) { continue; }
我犯了什么错误?我的代码真的应该如何显示?
What mistake did I make? How should my code really look?
推荐答案
来自 JSLint文档 :
避免使用continue语句.往往会掩盖该功能的控制流程.
Avoid use of the continue statement. It tends to obscure the control flow of the function.
因此,如果要遵守JSLint遵循的约定,请完全删除它.
So take it out entirely if you want to conform to the conventions that JSLint follows.
这篇关于意外的“继续"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!