外观
不可使用无用的 undefined。
undefined
undefined 是新变量、参数、返回语句等的默认值,因此指定它没有任何不同。
此规则的不正确代码实例
let foo = undefined;
此规则的正确规则示例
let foo;