Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Number.prototype.toFullString = function() {
var isDecimal = /\-/.test(this);
if (isDecimal)
return this.toFixed(this.toString().split("-")[1]);
else return this;
}
alert(2.34e-6.toFullString());
alert(1e+6.toFullString());