ephieo / FAC20-CALCULATOR

Creating a calculator for FAC20 pre-course assignment.
0 stars 0 forks source link

`toLocaleString` for numbers #5

Open hannahgooding opened 4 years ago

hannahgooding commented 4 years ago

More of a passing comment, I found this part of your code where you specify the language formatting of the integerDisplay really fascinating - I've not come across this JavaScript method used on number objects before!

integerDisplay = integerDigits.toLocaleString('en',{maximumFractionDigits:0})
ephieo commented 4 years ago

Aaaah I saw it in a video and thought I'd try it.