Skip to content

Instantly share code, notes, and snippets.

@exah
Created April 7, 2020 22:49
Show Gist options
  • Select an option

  • Save exah/0c1455ef39479f2ce9111c708e969d94 to your computer and use it in GitHub Desktop.

Select an option

Save exah/0c1455ef39479f2ce9111c708e969d94 to your computer and use it in GitHub Desktop.
const FRACTION = 10n ** 2n
const INPUT = 3333333n
const WHOLE = INPUT / FRACTION
const REMAINDER = INPUT % FRACTION
const NUMBER = Number(`${WHOLE}.${REMAINDER}`)
const FORMATTED = NUMBER.toLocaleString('en', { style: 'currency', currency: 'GBP' })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment