Skip to content

Instantly share code, notes, and snippets.

@made-by-chris
Created December 2, 2016 06:55
Show Gist options
  • Select an option

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

Select an option

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