I tried to run this code.
var is_null = null;
console.log(typeof is_null);
why 'is_null' is showing me Object when i watched in in the Console. How Null can be an Object. is Null an object in Javascript? please tell me if its a bug or it has some history behind it.
Null is not an object in any language. then why Null is an Object or shown as Object (in console) in JavaScript?