-
-
Save made-by-chris/421c57b975d1092e4927430fcc32e6c1 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
| $ = 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