Skip to content

victorlhlee/prep_getting_loopy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

Getting Loopy

For loops are great for:

  1. Iterating through an Array to access values within

  2. or running a set of instructions over and over again for a set amount of times, executing functions or one-off code.

  3. or any/all combinations of the above.

Getting Started

  1. Fork this repository and clone it from your personal GitHub Account
  2. In the Terminal, type cd prep_getting_loopy
  3. Your work will be one in the file named: loops.js
  4. To run your program, open the terminal and type node loops.js

Exercises

##1) Presidents - Accessing values in an Array Declare a variable named presidents and set its value to an Array containing the first 5 presidents' last names: Washington, Adams, Jefferson, Madison, Monroe.

Now write a for-loop which iterates through this Array.

Within the for-loop, use console.log to:

  • Log the value of i. Use a message like Value of i is: and append the value of i to this String
  • Log what is at index i in the array. Use a message like Value at Index is: and append the value stored within the Array at that index.

console.log is a great tool to give you feed back about your loops and the data that you're working with. When all else fails use console.log to inspect and debug your code.

Example:

example-1

bonus: could you take the code inside of this FOR loop and encapsulate it inside of a function called printContent and still achieve the same result? This new function should accept two parameters.

##2) The String of Numbers Declare a variable named stringOfNumbers and set it's value to '' (an empty String).

Write a for-loop that concatenates a Number value to that string on each iteration, starting at 10 and continuing up to and including 20.

After the for-loop, use console.log to inspect your variable. In the end your String should look like this 1011121314151617181920

bonus: could you take the code inside of this for-loop and encapsulate it inside of a function called appendToString and still achieve the same result?

##3) Add only even numbrs to an array Declare a variable named evenNumberArray.

Use a for-loop to add only even numbers to an Array. Add 50 even numbers to the evenNumberArray starting with the value 0.

Accessing only the odd indexes of an Array - 'Not Even Brah'

Someone forgot to fill out this array! Oh noes...

Declare a new variable named oopsArray set it's value to be: [ 'turn' , , 'down' , , 'for' , , 'what' ].

Note that every odd index value in oopsArray is currently undefined. Using a for-loop, add the string 'nope' to every odd index.

Example result should look like:

[ 'turn' , 'nope' , 'down' , 'nope' , 'for' , 'nope' , 'what' ]

##4) Going backwards?! Using a for-loop, iterate through the Array stored at oopsArray backwards. console.log each value in the Array.

example output:

what
nope
for
nope
down
nope
turn

##5) isNapTime Declare a variable named isNapTime. Set it to false.

Declare a variable named napSchedule. Set its value to be an Array with the values [false, false, true, false, true, true].

Declare a function named nap. This function takes in a single parameter called schedule.

  • If schedule is true then use console.log to display the message ZzZzZzZz
  • otherwise if schedule is false use console.log to display the message Gotta get to work! and then change the value of isNapTime to true

Now, Write a for-loop that iterates through the napSchedule array and runs the function nap while passing in the value at the current position of napSchedule into the nap function.

exmaple of output:

example-2

##6) CopyArray - clone array values Declare a variable named copyOfValuesArray and set its value to be an empty array, [].

Declare a variable named valuesArray and set its value to the following array: [99, 66, 829, 1941, 8, 76].

Declare a function named copyArray that takes two arguments: originArray and destinationArray. This function should iterate through the contents of originArray and push each value into destinationArray.

To get started, first declare your function. Call your function and pass in the two variables, valuesArray and copyOfValuesArray. After that, use console.log to to inspect the values of valuesArray and copyOfValuesArray to make sure they have the same values (which means your function worked!).

Final Boss

final-boss

Stage 1 - Only String Values

Declare a variable named miscStorage set its value to be: [ [], 'Carrots', 9, 'Beets', {}, {name: "Todd B."}, 'Mush' ]

Declare a function named generateArrayOfStrings which takes a single argument storage. This function returns a new Array with only String values inside of it.

Final Form - Change values of objects stored within an Array

It's that time again, we need to graduate the current class of students and start enrollment for the next class.

Declare a variable named currentClass and set it's value to be this array found here.

Declare a function named graduateAndSetNewClass, it takes a single argument called class.

Your function will iterate through the class argument and check each student's enrolled property.

If the enrolled property is set to true then change that student's graduated property to true. Otherwise, if enrolled is set to false then change enrolled to true leaving graduated alone and unchanged.

About

DevLeague Prep Homework about 'loops'

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%