Undefined

undefined 是一个 原始 值,它会自动分配给刚刚声明的 变量,或者分配给没有实际参数的形式 参数

示例

js
let x; // create a variable but assign it no value

console.log(`x's value is ${x}`); // logs "x's value is undefined"

另见