Skip to content

Commit 1900028

Browse files
committed
tweak the object challenges instructions
1 parent ffadf95 commit 1900028

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

assignments/objects.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
// ==== Challenge 1: Writing Objects ====
44
// HR needs some information on the new interns put into a database. Given an id, email, first name, and gender. Create an object for each person in the company list:
55

6-
// 1,[email protected],Mitzi,F
7-
// 2,[email protected],Kennan,M
8-
// 3,[email protected],Keven,M
9-
// 4,[email protected],Gannie,M
10-
// 5,[email protected],Antonietta,F
6+
// 1, [email protected], Mitzi, F
7+
// 2, [email protected], Kennan, M
8+
// 3, [email protected], Keven, M
9+
// 4, [email protected], Gannie, M
10+
// 5, [email protected], Antonietta, F
1111

12-
// Example format of an intern object: 1,[email protected],Example,F
12+
// Example format of an intern object: 1, [email protected], Example, F
1313
const example = {
14-
"id": 0,
15-
"name": "Example",
16-
"email": "[email protected]",
17-
"gender": "F"
14+
id: 0,
15+
name: "Example",
16+
17+
gender: "F",
1818
}
1919

2020
// Write your intern objects here:
@@ -40,7 +40,7 @@ const example = {
4040
// Antonietta loves math, give her the ability to multiply two numbers together and return the product. Use the console.log provided as a hint.
4141
//console.log(antonietta.multiplyNums(3,4));
4242

43-
// === Great work! === Head over to the the arrays.js file or take a look at the stretch challenge
43+
// === Great work! === Head over to the the arrays.js. You may come back and attempt the Stretch Challenge once you have completed the challenges in arrays.js and function-conversion.js.
4444

4545
// ==== Stretch Challenge: Nested Objects and the this keyword ====
4646

0 commit comments

Comments
 (0)