WordBlanks and Functions

The real lesson here is about passing values into a function.

You can declare a function the same way you declared variables:

function words(noun, adj, adv, verb)

In the snippet, above, we declared the name of a function (words), and we declared the names of four inputs for the function. You can Read More »