Cleaner way to write big numbers in javascript
It might not be a commonly known, but you can use a _
in numers, eg.
const foo = 100_000_000
is easier to read than const foo = 100000000
It might not be a commonly known, but you can use a _
in numers, eg.
const foo = 100_000_000
is easier to read than const foo = 100000000