2018-09-30 23:01:58 +01:00
---
id: 56533eb9ac21ba0edf2244ca
title: Using Objects for Lookups
challengeType: 1
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/cdBk8sM'
2019-07-31 11:32:23 -07:00
forumTopicId: 18373
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
Objects can be thought of as a key/value storage, like a dictionary. If you have tabular data, you can use an object to "lookup" values rather than a `switch` statement or an `if/else` chain. This is most useful when you know that your input data is limited to a certain range.
2018-09-30 23:01:58 +01:00
Here is an example of a simple reverse alphabet lookup:
2019-05-17 06:20:30 -07:00
```js
var alpha = {
1:"Z",
2:"Y",
3:"X",
4:"W",
...
24:"C",
25:"B",
26:"A"
};
alpha[2]; // "Y"
alpha[24]; // "C"
var value = 2;
alpha[value]; // "Y"
```
2020-11-27 19:02:05 +01:00
# --instructions--
Convert the switch statement into an object called `lookup` . Use it to look up `val` and assign the associated string to the `result` variable.
# --hints--
`phoneticLookup("alpha")` should equal `"Adams"`
```js
assert(phoneticLookup('alpha') === 'Adams');
```
`phoneticLookup("bravo")` should equal `"Boston"`
```js
assert(phoneticLookup('bravo') === 'Boston');
```
`phoneticLookup("charlie")` should equal `"Chicago"`
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(phoneticLookup('charlie') === 'Chicago');
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
`phoneticLookup("delta")` should equal `"Denver"`
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(phoneticLookup('delta') === 'Denver');
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`phoneticLookup("echo")` should equal `"Easy"`
```js
assert(phoneticLookup('echo') === 'Easy');
```
`phoneticLookup("foxtrot")` should equal `"Frank"`
```js
assert(phoneticLookup('foxtrot') === 'Frank');
```
`phoneticLookup("")` should equal `undefined`
```js
assert(typeof phoneticLookup('') === 'undefined');
```
You should not modify the `return` statement
```js
assert(code.match(/return\sresult;/));
```
You should not use `case` , `switch` , or `if` statements
```js
assert(
!/case|switch|if/g.test(code.replace(/([/]{2}.*)|([/][*][^/*]*[*][/])/g, ''))
);
```
# --seed--
## --seed-contents--
2018-09-30 23:01:58 +01:00
```js
// Setup
function phoneticLookup(val) {
var result = "";
// Only change code below this line
switch(val) {
2018-10-08 01:01:53 +01:00
case "alpha":
2018-09-30 23:01:58 +01:00
result = "Adams";
break;
2018-10-08 01:01:53 +01:00
case "bravo":
2018-09-30 23:01:58 +01:00
result = "Boston";
break;
2018-10-08 01:01:53 +01:00
case "charlie":
2018-09-30 23:01:58 +01:00
result = "Chicago";
break;
2018-10-08 01:01:53 +01:00
case "delta":
2018-09-30 23:01:58 +01:00
result = "Denver";
break;
2018-10-08 01:01:53 +01:00
case "echo":
2018-09-30 23:01:58 +01:00
result = "Easy";
break;
2018-10-08 01:01:53 +01:00
case "foxtrot":
2018-09-30 23:01:58 +01:00
result = "Frank";
}
// Only change code above this line
return result;
}
phoneticLookup("charlie");
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
function phoneticLookup(val) {
var result = "";
var lookup = {
alpha: "Adams",
bravo: "Boston",
charlie: "Chicago",
delta: "Denver",
echo: "Easy",
foxtrot: "Frank"
};
result = lookup[val];
return result;
}
```