In computer science, a null
value represents a reference that points, generally intentionally, to a nonexistent or invalid object or address. The meaning of a null reference varies among language implementations.
In JavaScript, null
is marked as one of the primitive values, because its behavior is seemingly primitive. However, when using the typeof
operator, it returns "object"
.
console.log(typeof null); // "object"
This is considered a bug, but one which cannot be fixed because it will break too many scripts.
See alsoRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4