Skip to content

Instantly share code, notes, and snippets.

@Shipow
Created August 4, 2015 13:13
Show Gist options
  • Save Shipow/c7daa74229747ad366fa to your computer and use it in GitHub Desktop.
Save Shipow/c7daa74229747ad366fa to your computer and use it in GitHub Desktop.
Native like function to return number with fixed float
Number.prototype.toFixedNumber = function(x, base){
var pow = Math.pow(base||10,x);
return +( Math.round(this*pow) / pow );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment