how to check if object is null in javascript code example

Example 1: javascript test for empty object

// because Object.entries(new Date()).length === 0;
// we have to do some additional check
Object.entries(obj).length === 0 && obj.constructor === Object

Example 2: javascript check if object is null or empty

if (typeof value !== 'undefined' && value) {
    //deal with value'
};

Example 3: javascript check if null

if (variable === null) { //Executes only if variable is null but not undefined
  //Code here
}

if (variable == null) { //Executes if variable is null OR undefined
  //Code here
}