Skip to content

Instantly share code, notes, and snippets.

@wentout
Last active September 26, 2020 20:36
Show Gist options
  • Select an option

  • Save wentout/1fc4f8cedaf127c0499b065ac3e8320e to your computer and use it in GitHub Desktop.

Select an option

Save wentout/1fc4f8cedaf127c0499b065ac3e8320e to your computer and use it in GitHub Desktop.
example of what immutable number is indeed
const a = new Number(100);
a.subtract = function (b) {
return this.valueOf() - b;
};
console.log(a.subtract(10)); // 90
console.log(a - 10); // 90
console.log(a - 10); // 90
console.log(a - 10); // guess
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment