Skip to content

Instantly share code, notes, and snippets.

@kkoziarski
Created November 28, 2014 11:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkoziarski/c71cc9d0ef73f06b2948 to your computer and use it in GitHub Desktop.
Save kkoziarski/c71cc9d0ef73f06b2948 to your computer and use it in GitHub Desktop.
Number.integer - The Good Parts
//returns only integer parts
Number.method('integer', function ( ) {
return Math[this < 0 ? 'ceiling' : 'floor'](this);
});
document.writeln((-10 / 3).integer( )); // -3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment