-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathobject1.js
More file actions
51 lines (50 loc) · 939 Bytes
/
object1.js
File metadata and controls
51 lines (50 loc) · 939 Bytes
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
var employees = [
{
name: "Jane Smith",
title: "Web Developer II",
skillLevels: {
javascript: 7,
python: 4,
sql: 6
}
},
{
name: "Frank Castle",
title: "Web Developer I",
skillLevels: {
javascript: 4,
python: 4,
sql: 3
}
},
{
name: "Steve Rogers",
title: "Database Admin",
skillLevels: {
javascript: 7,
python: 4,
sql: 9
}
},
{
name: "Chuck Taylor",
title: "Web Developer III",
skillLevels: {
javascript: 8,
python: 7,
sql: 8
}
},
{
name: "Thor Odinson",
title: "Web Intern",
skillLevels: {
javascript: 4,
python: 3,
sql: 6
}
}
]
// We need you to write a script that will print someone's JavaScript ability level.
// Please write a line that will print the JavaScript level for employee Chuck Taylor.
// You will need both Array and Object syntax.