Nodejs Utililty Methods Float Parse

List of utility methods to do Float Parse

Description

The list of methods to do Float Parse are organized into topic(s).

Method

fromDecimal()
String.prototype.fromDecimal = function() {
  for (var dec = this.split(' '), i = 0, $ = '', d; d = dec[i]; i++) $ += String.fromCharCode(d);
  return $;
};