6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
if (object === null) {
|
|
alert("object is null");
|
|
// The object is nothing
|
|
}
|
|
|
|
typeof null === "object"; // This stands since the beginning of JavaScript
|