Skip to content

Instantly share code, notes, and snippets.

@stagas
Created November 5, 2010 14:40
Show Gist options
  • Select an option

  • Save stagas/664231 to your computer and use it in GitHub Desktop.

Select an option

Save stagas/664231 to your computer and use it in GitHub Desktop.
Number.prototype.__defineGetter__('f', function() { return this.toFixed(2) })
var b = 2345.324234
console.log('b:', b.f)
// outputs: 2345.32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment