forked from devleague/prep_getting_loopy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloops.js
More file actions
118 lines (97 loc) · 5.1 KB
/
loops.js
File metadata and controls
118 lines (97 loc) · 5.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
Presidents - Accessing values in an Array
Declare a variable named presidents which contains 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.
*/
var prez =["-Washington!", "-Adams!", "-Jefferson!", "-Madison!", "-Monroe!"];
var dudes =["-Duke", "-Keoki", "-Ikaika", "-Kelani", "-Limu"];
function printContent(lister){
for (var i = 0; i<lister.length; i++){
//console.log("No: " + i + " " + lister[i]);
//console.log(lister[i]);
}
}
printContent(prez);
//console.log("yo");
/*
The String of Numbers
Declare a variable named stringOfNumbers and set it's value to '' (an empty String).
Then write a FOR loop that appends a Number value to that string starting from 10 all the way 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?
*/
var stringOfNumbers='';
function appendToString(LAGABALOO,FAGABALOO){
for (var i =LAGABALOO; i<=FAGABALOO; i++){
//if(i>9){
stringOfNumbers+=i;
}
console.log(stringOfNumbers);
}
appendToString(10,25);
/*} else {}
}
//console.log(stringOfNumbers);
/*
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' ]
using a FOR loop, add the string 'nope' to every odd index.
Example result should look like:
`[ 'turn' , 'nope' , 'down' , 'nope' , 'for' , 'nope' , 'what' ]`
*/
/*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
*/
/*isNapTime
Declare a variable named isNapTime. Set it to false
Declare a variable named napSchedule. Set it's 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
*/
/*CopyArray - clone array values
Declare a variable named copyOfValuesArray and set it's value to be an empty array, [].
Declare a variable named valuesArray and set it's value to be an array, [99, 66, 829, 1941, 8, 76].
Declare a function named copyArray which takes two arguments: originArray and destinationArray. Inside of this function you will loop through the contents of originArray and push each value into destinationArray.
To get started, below your function declaration, 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 it's 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.
*/