We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1dd7ed commit 216ee04Copy full SHA for 216ee04
1 file changed
assignments/objects.js
@@ -57,14 +57,19 @@ const interns = [
57
// Once your objects are created, log out the following requests from HR into the console:
58
59
// Mitzi's name
60
+console.log(interns[0]["first name"]);
61
62
// Kennan's ID
63
+console.log(interns[1].id);
64
65
// Keven's email
66
+console.log(interns[2].email);
67
68
// Gannie's name
69
+console.log(interns[3]["first name"]);
70
71
// Antonietta's Gender
72
+console.log(interns[1+3].gender);
73
74
// ==== Challenge 3: Object Methods ====
75
// Give Kennan the ability to say "Hello, my name is Kennan!" Use the console.log provided as a hint.
0 commit comments