Why is this an issue?

Initializing a variable to undefined is unnecessary and should be avoided. A variable will automatically be set to undefined if you declare it without initialization, so the initialization code is redundant in this case.

var foo = undefined; // Non-compliant, replace with var foo;
let bar = undefined; // Non-compliant, replace with let foo;

Resources

Documentation