Functions in Javascript

Assess your knowledge of functions in Javascript by implementing the following functions.

We'll cover the following...

Assess your skills

Test yourself by using an array as an argument when calling a function.

Press + to interact
// Return what fn returns using arr as arguments
argsAsArray = function(fn, arr) {
}

Test yourself ...