Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 26, 2021 10:22 am GMT

JS Basics: Difference between "null" and "undefined"

Hi Folks,

If you are working in javascript, you must be knowing these two keywords, null and undefined. Although we understand both of them, it becomes difficult to answer this particular question. So in todays post lets understand the difference between null and undefined.

Null and undefined are both falsy values and they are one of the javascript primitives ('string','number','null','undefined','boolean','symbol', 'bigint'). Now let's understand their difference.

The keyword undefined, as its verbal meaning says, is not defined. For example, If you are declaring a variable a and you are not passing any value to it. This means its value is not defined and so the variable a will get value undefined. Whenever you call a function or a variable and javascript do not know its value it will always return undefined. Try to do this, Declare a variable num and don't pass any value to it. Now let's print the variable num's value console.log(num) in your browser console and you will see undefined getting printed. This happened because your browser did not know the value of num as we had not defined it before! Also, as it is one of the javascript primitives, the type of undefined is also undefined!

We already have understood that, if something is not defined javascript gives it value is undefined. But then what about null? So null is something whose value you want to be nothing. Let me explain, suppose you have defined a variable a and you want its value to be nothing initially, So, instead of not giving it any value and making it undefined, you pass it Null meaning no value. Also, the type of null is an object. This is why according to MDN documentation, javascript has 6 primitives and there also is null, which is seemingly primitive, but indeed is a special case for every Object

So though null and undefined are almost the same, they have these differences in their types. While doing equality comparison in both, as both are falsy values == will give you a result true, but as both have different types, === will give you the result as false.

Thats all about Null and undefined.

Though this is a very basic topic, it becomes a tricky question for an interview! So share your comments/feedback about the article and also any of such tricky interview questions from your javascript interviews.


Original Link: https://dev.to/ms_yogii/js-basics-difference-between-null-and-undefined-i3o

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To