Skip to content

Instantly share code, notes, and snippets.

@K-Vishwak
Created January 30, 2022 17:09
Show Gist options
  • Save K-Vishwak/f464166f978e77f73c793ec7160d236f to your computer and use it in GitHub Desktop.
Save K-Vishwak/f464166f978e77f73c793ec7160d236f to your computer and use it in GitHub Desktop.
const num = 10.5;
console.log(Math.round(num)); // 11
console.log(Math.ceil(num)); // 11
console.log(Math.floor(num)); // 10
const num1 = 10.4;
console.log(Math.round(num1)); // 10
console.log(Math.ceil(num1)); // 11
console.log(Math.floor(num1)); // 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment