Is object symbol type - Node.js Object

Node.js examples for Object:Object Type

Description

Is object symbol type

Demo Code


function isSymbol(arg) {
  return typeof arg === 'symbol';
}

Related Tutorials