Skip to content

Instantly share code, notes, and snippets.

@RobAWilkinson
Created May 20, 2015 15:49
Show Gist options
  • Save RobAWilkinson/33a36807dd72772316c9 to your computer and use it in GitHub Desktop.
Save RobAWilkinson/33a36807dd72772316c9 to your computer and use it in GitHub Desktop.
quiz
//take a look at the parameters that are passed to this function
function(a, b, c) {
a *= 2;
b /= 4;
return c(a, b);
}
// what is the term for the parameter c thats passed into our function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment