Node.js examples for String:Convert
Convert String to number base 10
define([], function(){ String.prototype.toNumber = function(){ return parseInt(this,10); }/*from w w w. j a v a 2 s . com*/ });