Undefined
undefined is aprimitive value automatically assigned tovariables that have just been declared, or to formalarguments for which there are no actual arguments.
In this article
Example
js
let x; // create a variable but assign it no valueconsole.log(`x's value is ${x}`); // logs "x's value is undefined"