Last active
August 29, 2015 14:23
-
-
Save groksrc/f59f30830489ef027398 to your computer and use it in GitHub Desktop.
JavaScript Confusion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<script> | |
(function() { | |
var foo = new Object(); | |
var bar = new Object(); | |
var map = new Object(); | |
map[foo] = 'foo'; | |
map[bar] = 'bar'; | |
alert( map[foo] ); // alerts 'bar' not 'foo' !! | |
})(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment