-
-
Save made-by-chris/9773fc05feb69cb150928ce9828d4496 to your computer and use it in GitHub Desktop.
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
$ = { | |
left: function() { | |
console.log("turning left") | |
return this | |
}, | |
right: function() { | |
console.log("turning right") | |
return this | |
} | |
} | |
$.left().right() | |
// logs "turning left" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment