Skip to content

Instantly share code, notes, and snippets.

@dyoder
Created October 9, 2012 18:20
Show Gist options
  • Save dyoder/3860482 to your computer and use it in GitHub Desktop.
Save dyoder/3860482 to your computer and use it in GitHub Desktop.
CoffeeScript Function Arguments
foo
bar: "monday"
baz: 7
->
"omg, this works"
# meanwhile ...
foo
bar: "tuesday"
baz: 11
blurg
// Translates into ...
foo({
bar: "monday",
baz: 7
}, function() {
return "omg, this works";
});
foo({
bar: "tuesday",
baz: 11
}, blurg);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment