Day 16 and once again JavaScript doesn't fail to bring about a WTF moment.
Consider the following object:
var anObject = {left: 1, right: 2};
if we call each of the methods of this object it does what we expect:
> anObject.left
1
> anObject.right;
2
But here's the kicker. Let's …
read more