🔥 Format large numbers in your JavaScript with numeric separators.

const milly = 1_000_000;

This doesn't affect how the number works or is displayed - just helpful for reading large values quickly.

329501440