Null value

The value null means "nothing". For example, we can assign such a value to a variable to indicate that there is nothing there:

let a = null; alert(a); // shows null

Set the variable to null. Print this variable to the screen.

enru