// Setup
function phoneticLookup(val) {
var result = "";
// Only change code below this line
"alpha": "Adams",
"bravo": "Boston"
"charlie":"Chicago",
"delta":"Denver",
"echo":"Easy",
"foxtrot" : "Frank"
// Only change code above this line
return result;
}
// Change this value to test
phoneticLookup("charlie");
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36.
function phoneticLookup(val) {
var result = "";
// Only change code below this line
"alpha": "Adams",
"bravo": "Boston"
"charlie":"Chicago",
"delta":"Denver",
"echo":"Easy",
"foxtrot" : "Frank"
// Only change code above this line
return result;
}
// Change this value to test
phoneticLookup("charlie");
But I’m guessing you made a code typo here. It looks like your missing one for “”. “” can be created as a key/value storage.
// Setup
function phoneticLookup(val) {
var result = "";
// Only change code below this line
var lookup= {
"alpha": "Adams",
"bravo": "Boston",
"charlie":"Chicago",
"delta":"Denver",
"echo":"Easy",
"foxtrot" : "Frank"
}
result=lookup[val];
// Only change code above this line
return result;
}
// Change this value to test
phoneticLookup("charlie");