Skip to content

Instantly share code, notes, and snippets.

@K-Vishwak
Created January 30, 2022 17:50
Show Gist options
  • Save K-Vishwak/ce26a626b4af6aa8efe64974a212c48b to your computer and use it in GitHub Desktop.
Save K-Vishwak/ce26a626b4af6aa8efe64974a212c48b to your computer and use it in GitHub Desktop.
const num = 10.547;
const num1 = -10.547;
console.log(Math.abs(num)); // 10.547
console.log(Math.abs(num1)); // 10.547
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment