Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save djD-REK/3e6d2762ef83bb943e1121ac4e6b0d41 to your computer and use it in GitHub Desktop.
Save djD-REK/3e6d2762ef83bb943e1121ac4e6b0d41 to your computer and use it in GitHub Desktop.
console.log(Number("7") - 7 == 0);
console.log(Number("7") - 7 === 0);
console.log(Number("7") - 7 === Number("0"));
console.log("7" - 7 == "0");
console.log("7" - 7 === "0");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment