coffee-script
coffee-script copied to clipboard
Unpredictable behavior of "?" operator
if x?.y
return true
here undefined is tested for x But
if anObject.x?.y
return true
here undefined isn't tested for x