...

/

Summary: Let’s Get Functional

Summary: Let’s Get Functional

Review what we learned about functions in JavaScript.

We'll cover the following...

Key points

  • Named parameters can be reproduced in JavaScript using an object as the parameter. This allows the arguments to be provided as properties of the object in any order.
  • The rest parameter allows any number of values to be provided to a function as an array.
  • Recursive functions are functions that continually call
...