Created
April 7, 2020 22:49
-
-
Save exah/0c1455ef39479f2ce9111c708e969d94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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