Skip to content

Instantly share code, notes, and snippets.

@made-by-chris
Last active December 4, 2016 15:57
Show Gist options
  • Select an option

  • Save made-by-chris/421c57b975d1092e4927430fcc32e6c1 to your computer and use it in GitHub Desktop.

Select an option

Save made-by-chris/421c57b975d1092e4927430fcc32e6c1 to your computer and use it in GitHub Desktop.
$ = function(parameters) {
console.log(parameters)
return {
left: function(){
console.log(parameters, "turning left")
return this
},
right: function(){
console.log(parameters, "turning right")
return this
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment