Skip to content

Instantly share code, notes, and snippets.

@ranamahmud
Created November 2, 2020 15:33
Show Gist options
  • Save ranamahmud/a351bb5ac33ce92ff8ff8b52a0ac5b3e to your computer and use it in GitHub Desktop.
Save ranamahmud/a351bb5ac33ce92ff8ff8b52a0ac5b3e to your computer and use it in GitHub Desktop.
// constants
console.log(Math.PI)
// 3.141592653589793
console.log(Math.LN2)
// 0.6931471805599453
Math.sqrt(9)
// 3
Math.pow(3, 2)
// 9
Math.abs(-9)
// 9
Math.ceil(9.22)
// 10
Math.floor(9.22)
// 9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment