Node.js examples for String:Parse
Is String digit
String.prototype.isDigit = function () { return (this >= '0' && this <= '9'); };