Skip to content

Instantly share code, notes, and snippets.

@easierbycode
Created April 29, 2016 20:54
Show Gist options
  • Save easierbycode/bb18140ee4e1496d71111172ce70fd64 to your computer and use it in GitHub Desktop.
Save easierbycode/bb18140ee4e1496d71111172ce70fd64 to your computer and use it in GitHub Desktop.
truncates the decimal part of a number
let num = 29.9;
console.log( Math.trunc( num ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment