Skip to content

Instantly share code, notes, and snippets.

@rpivo
Created December 6, 2020 06:14
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 rpivo/50d5ff9aa2ae87d4379545e99fcb6a7a to your computer and use it in GitHub Desktop.
Save rpivo/50d5ff9aa2ae87d4379545e99fcb6a7a to your computer and use it in GitHub Desktop.
Numeric Separators in JavaScript

Numeric Separators in JavaScript

You can break up big numbers in JavaScript with the numeric separator _.

const difficultToReadTrillion = 1000000000000 // oof
const easyOnTheEyesTrillion = 1_000_000_000_000 // no problem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment