外观
禁用将 length 作为 slice 调用的结束参数。
length
slice
将 length 作为 slice 调用的结束参数没有必要,且容易产生混淆。
此规则不正确的代码示例
foo.slice(1, foo.length);
此规则正确的代码示例
foo.slice(1);