Created
May 20, 2015 15:49
-
-
Save RobAWilkinson/33a36807dd72772316c9 to your computer and use it in GitHub Desktop.
quiz
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
//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