Today I Learned - Rocky Kev

TIL multiple ways to deal with extra 0s

POSTED ON:

TAGS:

Dealing with lots of 0`s.


const SALARY = 150000000,
const TAX = 15000000;

✔️
const SALARY = 15e7,
const TAX = 15e6;

✔️
const SALARY = 150_000_000;
const TAX = 15_000_000;

Related TILs

Tagged:

TIL multiple ways to deal with extra 0s

Dealing with lots of 0`s.

TIL Number formatting with Javascript

Say you wanted to convert this into a string, with all the commas and everything. You can use the browser Intl package to use this.

TIL Number formatting with Javascript

Say you wanted to convert this into a string, with all the commas and everything. You can use the browser Intl package to use this.