Why Intl matters in real products
This is not cosmetic. It is functional precision for users in different regions.
The same numeric value can appear as `1,234.56 USD` in one locale and `1.234,56 EUR` in another. If you format it badly, the user may understand the data incorrectly.
With `Intl`, you make locale and formatting rules explicit instead of building strings by hand.