Some languages, like Java and C++, allow you to use numeric separators. To improve readability, you can group digits per thousand:
1_000_000_000
But not only per thousand; you can use it anywhere really. Say you have some value in centimeters. Separating it like this makes it easier for humans to read it as meters:
10_00 // 10 meters
Wouldn't it be great if we could have this in JavaScript as well?