8.
What does the value "null" represent in JavaScript?
A null object
An undefined variable
An empty string
A missing value
Correct: A, D
The value "null" represents the intentional absence of any object value. It is often used to indicate a variable or object property that has not been assigned a value, or to clear a previously assigned value. Null is not the same as undefined, which indicates an uninitialized variable.