Is object null or undefined - Node.js Object

Node.js examples for Object:Object Type

Description

Is object null or undefined

Demo Code

function isNullOrUndefined(arg) {
  return arg == null;
}

Related Tutorials