TIL multiple ways to deal with extra 0s
POSTED ON:
TAGS: numbers javascript
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: numbers