Fork me on GitHub

JSLint Error Explanations

JSLint will hurt your feelings. It's time to make them better!


The array literal notation [] is preferrable

什么时候会产生这个错误?

JSLint和JSHint(1.0.0版本前)遇到使用new操作符调用Array构造函数时,会抛出"The array literal notation [] is preferrable"错误。下面是一个例子:

这和JSLint以及老版本的JSHint中的"Use the array literal notation []"的警告是一样的。更多的内容可以在该页面中找到。

在JSHint 1.0.0及以上版本中你可以通过一种特殊的语法选项special option syntax来忽略任意警告。这个警告的标示符是W009。也就是说你可以通过/*jshint -W009 */让JSHint不报出这个警告信息。


comments powered by Disqus