Array fundamentals
February 17, 2021
Homework
Arrays
Checkboxes
Morning reflection
Housekeeping
Adian’s Folley
Dailies shoutouts
Pattern matching
Others
Word Count: Aidan, Ash, Joel, Joe
Red limit warning: Dustin
1. Array Overview
Learning Objectives
Create an array using an array literal.
Add to the end of an array using array[array.length]
.
Access an item in an array using the item’s index.
Re-assign an item in an array using the item’s index.
Terminology
Array literal
A comma separated list of values surrounded by []
. For example, [‘cats’, ‘dogs’, ‘fish’].
Array index
The location of an item in an array. In Javascript, his is always a sequential number starting at 0.
Array item
Any Javascript data type (i.e. value) that an array index points to.
Materials
Key Takeaways
Array indexes always start at zero and increase by one with each additional element.
The next index in an array is always array.length
.
The last index of an array is always array.length - 1
.
The value of an element can be any data type: undefined
, null
, number
, string
, boolean
, array
, object
, etc.
Although arrays can be a list of any value type, you rarely see a mix of types in the same array.
The most common use case of an array is a list of objects, which we’ll cover later this week.
Don’t forget: creating an array using const
still allows you to change (or mutate) the items in that array.
2. Finding a random item in an array
Learning Objectives
Create a random index of an array.
Retrieve a random item from an array.
Output an HTML using a random array item and Element.innerHTML
.
Materials
Key Takeaways
Random numbers in Javascript are a pain.
There are many ways to output HTML than Element.innerHTML
but we’ll stick with this one for most of this program. See <template>
: The Content Template element for a fancier way.
3. Output an HTML list from an array
Learning Objectives
Create a list of HTML items from an array using:
Terminology
Array glue
A string that is added when joining elements of an array.
Materials
Key Takeaways
The array glue for an HTML list is most often </li><li>
, which is then surrounded by <ul><li>
and </li></ul>
.
Open lab-time
Activities
Create a list of img
URLs from your projects and assets and create a “Random Image of the Day” page.
Create a semantically correct list of nouns
: each separated by a comma and space (,
) except the last item which is separated by ` and . Capitalize the first noun and end the "sentence" with a period (
.`).
Using the nouns.mjs
sample array, re-create a version of Tony’s Random Band Name Generator .
Tony’s goals for Lab-Time
Dailies
Submit today’s Codepen/repo/gist to the Dailies section (in Assessments) in Brightspace.
© 2021 Tony Grimes. MIT License.