Node.js examples for Data Type:Type Check
Is object number type
function isNumber(arg) { return typeof arg === 'number'; }