javascript.info Notes - Numbers
Quick notes about numbers in Javascript. It is expected that you have already understood how it works and just want to revise the important points.
let billion_1 = 1000000000;
let billion_2 = 1_000_000_000;
let billion_3 = 1e9;
//all above are same ...
fiftybugsofgrey.hashnode.dev2 min read