//MAKE: 3.06 Skill-builder: Bucket list

Resources

Saving your work

Use Save as... to save the empty template as "3.06S-BucketList-LastName.html" in your Computer Programming directory.

The assignment

Use arrays and .join() to create a bucket list of things to do during your lifetime.
The phrase bucket list was inspired by a 2007 movie starring Morgan Freeman.

For example

Drapak's bucket list


Hints

  1. Create a <div> with id="outputId" in the body of your code
  2. Create a button that will trigger mainProcedure
  3. initialize your bucket list array
  4. create an output function that will insert a result into outputId
  5. create a process function that will .join() your bucket list array together
  6. create a mainProcedure function that will pass the bucket list array as an arugment/parameter to your process function, and then pass the results to your output function
  7. reread //PROCESS: Using arrays for more info