Skip to content

Instantly share code, notes, and snippets.

@eshaan5
Last active July 6, 2022 10:04
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 eshaan5/fc8edf1a2130b4b0d190777585210d52 to your computer and use it in GitHub Desktop.
Save eshaan5/fc8edf1a2130b4b0d190777585210d52 to your computer and use it in GitHub Desktop.
let num1 = 2_4;
alert(num1) // 24
let num2 = 200_300_123
alert(num2) // 200300123
let billion = 1_000_000_000;
console.log(billion) // 1000000000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment