Skip to content

Instantly share code, notes, and snippets.

@varemenos
Created May 25, 2013 06:48
Show Gist options
  • Save varemenos/5648190 to your computer and use it in GitHub Desktop.
Save varemenos/5648190 to your computer and use it in GitHub Desktop.
JavaScript - Comparison results
var a = '5';
var b = new String('5');
console.log( typeof a, typeof b, a == b, a === b );
/* Output:
> string
> object
> true
> false
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment