Nodejs Utililty Methods Number Type Check

List of utility methods to do Number Type Check

Description

The list of methods to do Number Type Check are organized into topic(s).

Method

isNumber()
Object.prototype.isNumber = function (){
   return typeof this.valueOf() === 'number' ;
};