Skip to content

Instantly share code, notes, and snippets.

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