Is object Object type - Node.js Object

Node.js examples for Object:Object Type

Description

Is object Object type

Demo Code


function isObject(arg) {
  return typeof arg === 'object' && arg !== null;
}

Related Tutorials