Node.js examples for String:Parse
Convert String to Decimal
String.prototype.ToDecimal = function () { var strValue = this; if ((strValue.indexOf(".") > -1 && strValue.indexOf(",") > strValue.indexOf(".")) || (strValue.indexOf(".") == -1 && strValue.indexOf(",") > -1)) strValue = strValue.replace(/\./gi, "").replace(",", "."); return parseFloat(strValue); };