This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JS Numbers

ES2021 intoduced the numeric separator (_) to make numbers more readable:

Is 1_000_000_000 the same as 1000000000?

const num1 = 1_000_000_000;
const num2 = 1000000000;
document.getElementById("demo").innerHTML = (num1 === num2);