Created
June 3, 2019 15:32
-
-
Save bartcis/700e4d762676d1c6512d4174331c01fe to your computer and use it in GitHub Desktop.
Simple example of explicit coercion in JS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Let's say that bank account | |
| let money = 1E6; | |
| // Your hard work pays off | |
| money = money + Number('.6E6'); | |
| // That looks better :) | |
| console.log(money); // 1 600 000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment