Skip to content

Instantly share code, notes, and snippets.

@2012mjm
Created July 26, 2019 12:49
Show Gist options
  • Select an option

  • Save 2012mjm/66b4098ef63452d3f416b25887b0d335 to your computer and use it in GitHub Desktop.

Select an option

Save 2012mjm/66b4098ef63452d3f416b25887b0d335 to your computer and use it in GitHub Desktop.
let a = 3;
let b = new Number(3);
let c = 3;
console.log(a == b);
console.log(a === b);
console.log(b === c);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment