Null

In programming, null is a special value that represents the absence of a value or a null reference. It is typically used to indicate that a variable or object does not currently point to any valid data or does not have a meaningful value.

Example (JavaScript):

let value = null; // value is explicitly set to null

let obj = null; // obj is set to null to indicate that it does not currently reference an object

console.log(value); // Output: null