Skip to content

Instantly share code, notes, and snippets.

@netojoaobatista
Created October 27, 2016 18:55
Show Gist options
  • Save netojoaobatista/aba2de8d9699c7dbc205fb079cdee72c to your computer and use it in GitHub Desktop.
Save netojoaobatista/aba2de8d9699c7dbc205fb079cdee72c to your computer and use it in GitHub Desktop.
Number.prototype.$toFixed = Number.prototype.toFixed;
Number.prototype.toFixed = function(x) {
return (Math.floor(this * Math.pow(10, x)) / Math.pow(10, x)).$toFixed(x);
};
print((22.315).toFixed(2)); //22.31
print((49.995).toFixed(2)); //49.99
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment