Skip to content

Instantly share code, notes, and snippets.

@bartcis
Created June 3, 2019 15:32
Show Gist options
  • Select an option

  • Save bartcis/700e4d762676d1c6512d4174331c01fe to your computer and use it in GitHub Desktop.

Select an option

Save bartcis/700e4d762676d1c6512d4174331c01fe to your computer and use it in GitHub Desktop.
Simple example of explicit coercion in JS
// 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