forked from gabischool/Week3_JS_Introduction
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobjects.js
More file actions
93 lines (65 loc) · 2.37 KB
/
objects.js
File metadata and controls
93 lines (65 loc) · 2.37 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
// Let's get some practice writing a few objects for a new group of interns at a small business.
// ==== Challenge 1: Writing Objects ====
// 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:
// 1, mmelloy0@psu.edu, Mitzi, F
// 2, kdiben1@tinypic.com, Kennan, M
// 3, kmummery2@wikimedia.org, Keven, M
// 4, gmartinson3@illinois.edu, Gannie, M
// 5, adaine5@samsung.com, Antonietta, F
// Example format of an intern object: 1, examples@you.edu, Example, F
// Write your intern objects here:
const objectMitzi = {
id: 1,
name: 'Mitzi',
email: 'mmelloy0@psu.edu',
gender: 'F',
}
const objectKennan = {
id: 2,
name: 'Kennan',
email: 'kdiben1@tinypic.com',
gender:'M',
}
const objectKeven = {
id: 3,
name: 'Keven',
email: 'kmummery2@wikimedia.org',
gender: 'M',
}
const objectGannie = {
id: 4,
name: 'Gannie',
email: 'gmartinson3@illinois.edu',
gender: 'M',
}
const objectAntionietta = {
id: 5,
name: 'Antonietta',
email: 'adaine5@samsung.com',
gender: 'F',
}
// ==== Challenge 2: Reading Object Data ====
// Once your objects are created, log out the following requests from HR into the console:
// Mitzi's name
console.log(objectMitzi['name']);
// Kennan's ID
console.log(objectKennan['id']);
// Keven's email
console.log(objectKeven['email']);
// Gannie's name
console.log(objectGannie['name']);
// Antonietta's Gender
console.log(objectAntionietta['gender']);
// ==== Challenge 3: Object Methods ====
// Give Kennan the ability to say "Hello, my name is Kennan!" Use the console.log provided as a hint.
// console.log(kennan.speak());
console.log("Hello, my name is Kennan!");
// Antonietta loves math, give her the ability to multiply two numbers together and return the product. Use the console.log provided as a hint.
//console.log(antonietta.multiplyNums(3,4));
//console.log(Antonietta.multiplyNums);
const multiply = (num1, num2) => {
return 3 * 4;
};
let resulMultiply = multiply(3, 4);
console.log(resulMultiply);
// === 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.