Arrays Flashcards
What is an array?
Array ares a data structure.
Way store and organize data
Why are arrays better than variables?
Variables store strings, numbers, and booleans.
Variables can store single value only– which is limiting.
What types of data can arrays hold?
Strings
Numbers
Booleans
Even Other Arrays
What are 2 practical examples where arrays can be used?
Shopping list
Online order list
What’s the syntax of an array?
variable name = [];

What symbol do you use to separate list values?

commas
Does the last value in the list of array items have a comma?
No

Why should you breakup items?
Easier to read
Easier to edit

What is zero index?
The counting starts at 0.
Rather than at 1
First item is at 0 index.
Second item is at 1 index.
Third item is at 2 index.
What symbol do you use to return values?

[]
brackets
What happens if you list an item not on the list?
Example [4]

Last item is undefined in console because nothing in index 4.
script.js contains an array of string values (the names of players in a game). Practice using array indices by accessing individual names in the players array. Start by logging the first name inside the array using the console.log() method.
First Response:
const players = [‘Toni’, ‘Anwar’, ‘Mali’, ‘Carlos’, ‘Cormac’, ‘Sariah’];

Notice the syntax:
Parenthesis
variable name
Brackets
;

Complete the code below to log the message “Arrays are awesome” to the console:


Arrays are zero-based. What does that mean?
The index of the first element inside an array is 0 (not 1).
Which of the following best describes an array?
A collection of values you can assign to a single variable.
In this array, which code snippet prints the number 1 to the JS console?


What’s a great resource for JS?
MDN
Mozilla Developer Network
What does the length property do?
returns values in array
number of items in array
How do you add elements?
Use .push to add to the end of the array.
Use .unshift to the beginning of the array
What does .push do?
Adds elements
Adds to the end of an array
What does .unshift do?
.unshift adds an element to the beginning of an array
The array assigned to the guestList variable holds a list of names. Add two new names to the end of the array using the push() method. Make sure not to type the names directly inside the guestList array 😁.

variableName.push(‘Name1’, ‘Name2’);

Now add two names to the beginning of the array using the .unshift array method

How do you remove elements from an array?
.pop and .shift methods remove items from an array
How does the .pop method remove items?
.pop takes off the last item from the array
How does the .shift method remove elements?
Takes first item off from an array
How do you remove tuna from the list?

let [new variable name] = [variableWithList].shift();

What methods help create first in, first out?
.Push and .shift method work together:
What happens if you write numbers.length given this array?

It returns the length of 5
What happens if you apply numbers.push(600)?

Adds 600 to the const numbers array
.push adds to the end of an array
What happens if you apply numbers.unshift(0)?

You add 0 to beginning of an array
What happens if you apply numbers.shift()

Returns 0
The array assigned to the variable orderQueue
contains a list of order numbers.
Declare a new variable named shipping.
Remove the first element from the
orderQueue array and assign it to the shipping. variable.


Next, declare a new variable named cancelled. Remove the last item from the orderQueue array and assign it to the variable cancelled. Use the array that method removes the last element from an array and returns it.

.pop()
returns last value
removes last value

What is the spread operator look like?
3 dots + variable name

What does the spread operator do?
The spread operator (…) a JS syntax that builds,
combines, and manipulate arrays quickly and seamlessly.
How do you connect HTML and JS file?
Add a JS script tag to the index.html
What is a two-dimensional array?
It’s an array within an array.
How do you connect arrays with the spread operator?
You use the 3 dots and variable name
Example …middle

How do you bring together two arrays into a new variable altogether?
Use spread operators … with variable names

How would you remove an array?
Use woodwind.pop()
It would only remove from woodwind array

How do you add items to the array to the front?
variableNames.unshift(‘item’, ‘itemB’)

How would you extract the max number in a list of numbers using the spread operator?
const numbers = [10, 20, 30, 40];
See the console.log

What does Math.max do?

Produces the highest number in a list within an array
What does Math.min do?

It selects the lowest number within an array.
Can you use the .push() method to add more than one element to an array at the same time? Is the following example, valid?
scores.push( 77, 76, 89);
Yes.
You can use push() to add any number of
elements to the end of an array.
Please fill in the correct answer.
Complete the code by using the property that returns the number of elements in the attendees array.

attendees.length

Which array method adds an element to the end of an array?
.push()
Which of the following places the contents of
one array into another array?
The spread operator (…)
Which array method returns the first element of an array and removes it from the array?
.shift() removes first item from beginning of the array
Complete the code below to add the value of
23 the beginning of the ages array.

ages.unshift(23);

What is the zero index values for
the following array of students?

Order/Name
0 Lee
1 Jan
2 Mali
3 Sarah
What happens when the loop counter reaches 4?

When it reaches 4, it breaks the loop as
the array doesn’t have a 4th item.
Why would you use a variable length counter?

students.length is superior coding because it
adjusts to changes in the array better
If student number changes, up/down,
program is flexible enough to run.
What function would you use to create items in a list?

function is
createListItems
What is arr?

Parameter
What does the ${arr[i]}?
It returns values that matches i variable
What’s the role of return items;?

it’s key to calling function
What does the document.querySelector
section of code produce?

It puts all the songs in an ordered playlist
What symbol do you use to keep conditions separate?

use the semi-colon ; to separate conditions
Do you need a symbol after the closing curly brace }?

No, you don’t need a ; after a } curly brace.
What does the the .join array method do?

.join() method creates and returns a new string by concatenating all of the elements in an array, separated by commas or specified separator string.
Joins list items in a variable by giving it a format consisting with spaces, dashes, or punctuation

What does the array method .includes() do?
determines whether or not an item is found within an array by providing an answer as True or False for Yes and No respectively
true or false
true: found
false: not found
If an item is found within an array, what response does the .includes() array method provide?
True
What happens if you use the array method .includes() for an item that’s not found within an array, what response is provided in the JavaScript console?
False
Not found in the array
Is the .includes() array method case sensitive?
Yes
It’s case sensitive.
The wrong case creates an error
Stick to lowercase
What does .indexOf array method do?
Checks if value is found within an array
Using the .indexOf array method
how does it use the zero index method?
-1 not found
if it is found in the array
What does a positive number mean in the context of the .indexOf array method mean?

Positive numbers means the item is
found in the list of array items
What does a negative number mean in the context of .indexOf()?

Negative number = not in the list of array items
Use the array method that combines all of the elements inside the planets array into a single string. The final string should separate the array elements by a comma and space. Log the final string value to the console.

Logs the final string value to the console with the .join array method giving it a comma and space to bring the list items together with correct formatting

Next, use the method that returns the position of ‘Saturn’ in the planets array. Log the return value to the console.

console.log(variableName.indexOf(‘Saturn’));

How do you write an if/else statement to search an array based on a search? Just the if/else section
if (variableName.includes(search) {
message= Yes, we have ${search}
;
} else {
message = Sorry, we don't have ${search}
;
How do you explain the logic behind this program?

FIrst, establish a variable assigned to an array with the list of items.
Second, create a variable that asks a prompt question
Create a third variable for the reply to the question
Fourth, create an if/else statement that searches the first variable using the second variable question to then produce yes/no messages if item is or isnt in stock
What array method would you use to search the grocery list items to see if it is in stock?
.indexOf
array method
