意外“.”从jslint(
http://jslint.com/)上的这段代码:
function test(foo) { "use strict"; return (foo || "").replace("bar","baz"); }
为什么jslint对于||有问题运算符强制一个空字符串,以便可以执行替换,而不会导致错误,以防foo以未定义的方式传入?
这通过:
function test(foo) { "use strict"; var xFoo = (foo || ""); return xFoo.replace("bar","baz"); }
我知道这是基于意见的,我可以忽略它等等,但是想了解为什么像这样的链接皱起眉头.也知道eshint,但我不是想绕过这个消息,只是想了解为什么.
似乎像第一种方法更简洁和更清洁,因为它不需要额外的变量(xFoo).
这两个功能在所有条件下都完全一样.
解决方法
使用String()方法在jslint中删除错误
function test(foo) { "use strict"; return String(foo || "").replace("bar","baz"); }
另见Distinction between string primitives and String objects,JSLint Help