Easy
Why does typeof null return 'object' but null instanceof Object is false in JavaScript?
What will be logged, and why?
1console.log(typeof null);2console.log(null instanceof Object);
What will be logged, and why?
1console.log(typeof null);2console.log(null instanceof Object);