Check null values in JavaScript?

JavaScript
null
check null value

Null is a javascript one of the data type.

Below is the ways to test whether a value is null or not.

When we are initialize a variable in javascript, the default value is null

var variable;
console.log(variable) // null

If we are assigned null to a variable, the value of variable is null like below

var variable = null;
console.log(variable) // null

Check a variable is null or not using if condition.

if(variable == null){
  // write somthing
}

or

if(variable === null){
  // write somthing
}

The difference between above both conditions are “==” and “===”.

== is nothing but comparing two values only.

=== is nothing but comparing two values and type also.

We can also write condition like below for more accuracy.

if(variable === null && typeof variable === "object"){
  //
}

Basically type of the null variable is object.

We can also write condition like.

if(variable){
  // which means the variable is not null
}else{
  // the variable is null
}

We can also comparing null with 0


if(null !== 0){
  // the value is true
}

or

if(null === 0){
  // the value is false
}

 

 

You might also like:

Compare the Triplets | Javascript | hackerrank.com

07-05-2020 hackerrank.com

How To Get Your Blogs Posts Using Blogger API

30-07-2017 blogger api json php

How to convert html to pdf in Node js

12-03-2017 pdf convert html node js

Filter for change Date format (MM-dd-yyyy) in Angular Js

05-03-2017 mm-dd-yyyy date formats angular js

How to get drop down value when drop down change using javascript

27-02-2017 onchange events dropdown javascript functions