Record Collection – FCC Coding Challenge

Accessing Nested JavaScript Objects

This is a freeCodeCamp exercise about nested objects and arrays. Here are some things that helped.

Translate the Instructions Correctly and Comprehensibly

I watched the FCC YouTube tutorial. Of course I was able to pass the challenge by copying what the instructor did (see image). record collection function from FCC tutorialBut this didn’t help with my goal of learning and understanding. I read some feedback from Read More »

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 »