Asynchronous JavaScript and XML

What Is Difference Between Undefined and Object?

JavaScript Undefined vs Object - 
Undefined – The undefined means some variable is declared but the value of variable is not defined yet.

Object - Object means some variable is declared but the value of variable is not defined that is either function, object OR array.

You can easily be understanding in the below example in detail –
let emp; //The declaration of emp is hoisted but the value of emp is  undefined.
console.log(emp); //The output is undefined

console.log(typeof(null));      // object
console.log(typeof(undefined)); // undefined


I hope you are enjoying with this post! Please share with you friends!! Thank you!!!
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

What Is Difference Between Undefined and Object? What Is Difference Between Undefined and Object? Reviewed by Anil Singh on 12:22 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^