unicorn/no-useless-undefined Pedantic
What it does
Do not use useless undefined
.
Why is this bad?
undefined
is the default value for new variables, parameters, return statements, etc… so specifying it doesn't make any difference.
Examples
Examples of incorrect code for this rule:
javascript
let foo = undefined;
Examples of correct code for this rule:
javascript
let foo;