Skip to content

Commit a3d27d8

Browse files
committed
update quiz section instructions
1 parent 6c63c40 commit a3d27d8

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

fundamentals.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// NOTE: Make sure to use the `var` keyword for ALL variable declarations
1+
// NOTE: Make sure to use the `var` keyword for ALL variable declarations.
22

3-
// Create an array called `colors` that contains three colors (strings).
3+
// Create an array of strings called `colors` that contains three colors.
44

55

66

@@ -12,14 +12,14 @@
1212

1313

1414

15-
// Create a `for` loop that pushes each item in `colors` into `favoriteColors`.
15+
// Create a `for` loop that adds each string in `colors` to `favoriteColors`.
1616

1717

1818

19-
// Create an `instructor` object that contains three key-value pairs.
19+
// Create an object literal called `instructor` that contains three key-value pairs.
2020

2121

2222

23-
// Add a `facial-hair` (written like that exactly) property to `instructor` by
24-
// accessing it (do not change the original object you typed above) and assigning it
23+
// Add a `facial-hair` (spelled exactly) property to `instructor` by accessing
24+
// it (do not change the original object you typed above) and assigning it
2525
// a boolean value.

hof.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ var people = [
66
{name: "Jasmine", age: 39}
77
]
88

9-
// Use the `map` array method to create a new array containing each person in the
10-
// `people` array's age. Assign the returned array to a variable called `peoplesAges`.
9+
// Use the `map` array method to create a new array containing the ages of each
10+
// person in the `people` array. Assign the returned array to a variable
11+
// called `peoplesAges`.
1112

1213

1314

0 commit comments

Comments
 (0)