noArguments
诊断类别:lint/style/noArguments
¥Diagnostic Category: lint/style/noArguments
自从:v1.0.0
¥Since: v1.0.0
来源:
¥Sources:
-
与以下相同:
prefer-rest-params
¥Same as:
prefer-rest-params
禁止使用 arguments
。
¥Disallow the use of arguments
.
¥Examples
¥Invalid
code-block.js:2:16 lint/style/noArguments ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ Use the rest parameters instead of arguments.
1 │ function f() {
> 2 │ console.log(arguments);
│ ^^^^^^^^^
3 │ }
4 │
ℹ arguments does not have Array.prototype methods and can be inconvenient to use.
¥Valid
¥Related links