Node.js examples for Number:Parse
Check whether a value exists and is, in fact, a number
// check whether a value exists and is, in fact, a number. module.exports = function isNumber(a) { return a !== null && isFinite(a); }