Is object function type - Node.js Object

Node.js examples for Object:Object Type

Description

Is object function type

Demo Code

function isFunction(arg) {
  return typeof arg === 'function';
}

Related Tutorials