Skip to content

Instantly share code, notes, and snippets.

@srezasm
Created September 6, 2020 13:35
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 srezasm/279f610b3c4d5dfa05ca24e0a5d1cc16 to your computer and use it in GitHub Desktop.
Save srezasm/279f610b3c4d5dfa05ca24e0a5d1cc16 to your computer and use it in GitHub Desktop.
remove last digits
const int = 1553 / 10 | 0;
console.log(int);
// Result: 155
console.log(
typeof int
)
// Result: number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment