diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index 04a214d046..2a032832b4 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -3424,7 +3424,7 @@ "Here is an example of a simple reverse alphabet lookup:", "
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\"
lookup
. Use it to lookup val
and return the associated string."
+ "Convert the switch statement into a lookup table called lookup
. Use it to lookup val
and assign the associated string to the result
variable."
],
"releasedOn": "January 1, 2016",
"challengeSeed": [