E0086: redundant delete statement on variable
The following delete statement is redundant on variable:
let x = 3;
delete x;
console.log(x);
To fix this warning, remove the delete statement:
let x = 3;
console.log(x);
Find bugs in JavaScript programs.
The following delete statement is redundant on variable:
let x = 3;
delete x;
console.log(x);
To fix this warning, remove the delete statement:
let x = 3;
console.log(x);