Skip to content

Instantly share code, notes, and snippets.

@made-by-chris
Last active December 4, 2016 15:57
Show Gist options
  • Save made-by-chris/9773fc05feb69cb150928ce9828d4496 to your computer and use it in GitHub Desktop.
Save made-by-chris/9773fc05feb69cb150928ce9828d4496 to your computer and use it in GitHub Desktop.
$ = {
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