Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function phoneticLookup(val) {
  2. switch(val) {
  3. case "alpha": return "Adams";
  4. case "bravo": return "Boston";
  5. case "charlie": return "Chicago";
  6. case "delta": return "Denver";
  7. case "echo": return "Easy";
  8. case "foxtrot": return "Frank";
  9. }
  10. }
  11.  
  12. console.log(phoneticLookup("alpha"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement