eslint/no-delete-var Correctness
What it does
The purpose of the delete
operator is to remove a property from an object.
Why is this bad?
Using the delete
operator on a variable might lead to unexpected behavior.
Example
Examples of incorrect code for this rule:
javascript
var x;
delete x;