Skip to content

Instantly share code, notes, and snippets.

@sarfraznawaz2005
Last active October 12, 2015 18:31
Show Gist options
  • Save sarfraznawaz2005/5916566f87bb6cba0cd7 to your computer and use it in GitHub Desktop.
Save sarfraznawaz2005/5916566f87bb6cba0cd7 to your computer and use it in GitHub Desktop.
Quick way to round a number
console.log( 104.249834 | 0 ); //104
console.log( 9.999999 | 0 ); // 9
// bitwise operators operators call ToInt32 on each expression to be evaluated
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment