-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path090-using-objects-for-lookups.js
34 lines (31 loc) · 1.02 KB
/
090-using-objects-for-lookups.js
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
/*
Using Objects for Lookups:
Convert the switch statement into an object called lookup.
Use it to look up val and assign the associated string to the result variable.
- phoneticLookup("alpha") should equal the string Adams
- phoneticLookup("bravo") should equal the string Boston
- phoneticLookup("charlie") should equal the string Chicago
- phoneticLookup("delta") should equal the string Denver
- phoneticLookup("echo") should equal the string Easy
- phoneticLookup("foxtrot") should equal the string Frank
- phoneticLookup("") should equal undefined
- You should not modify the return statement
- You should not use case, switch, or if statements
*/
// Setup
function phoneticLookup(val) {
let result = "";
// Only changed code below this line
const dict = {
alpha: "Adams",
bravo: "Boston",
charlie: "Chicago",
delta: "Denver",
echo: "Easy",
foxtrot: "Frank"
};
result = dict[val];
// Only changed code above this line
return result;
}
phoneticLookup("charlie");