DEV Community

Discussion on: 10 Clean code examples (Javascript).

Collapse
 
valeriavg profile image
Valeria

When dealing with lots of zeros it's also possible to use underscore to separate ranks:

const num= 10_000_000;
Enter fullscreen mode Exit fullscreen mode
Collapse
 
redbossrabbit profile image
Ibeh Ubachukwu

Thanks. Finally a responsible dev community! 😄

Collapse
 
redbossrabbit profile image
Ibeh Ubachukwu

I meant to say responsive*. But I guess responsible works fine too. Autocorrect issues😤

Collapse
 
valeriavg profile image
Valeria

Haha, no worries!)

Collapse
 
e11y0t profile image
Elliot Wong

Woah didn't know this until now! This will defo help with code readability, thanks :)