noArguments
Este conteúdo não está disponível em sua língua ainda.
Diagnostic Category: lint/style/noArguments
Since: v1.0.0
Sources:
- Same as:
prefer-rest-params
Disallow the use of arguments
.
Examples
Section titled ExamplesInvalid
Section titled Invalidcode-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.