Placing an underscore in numbers in JavaScript can make them more human readable:
10_000 + 500; // 10500
1_000_000 === 1000000; // true
Placing an underscore in numbers in JavaScript can make them more human readable:
10_000 + 500; // 10500
1_000_000 === 1000000; // true