Guest User

Untitled

a guest
Dec 22nd, 2020
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. сonst destinationToTitleMapper = {
  2.     somedest: local.foo,
  3.     otherdest: local.bar,
  4.     // ....
  5. };
  6.  
  7. const title = destinationToTitleMapper[destination];
  8.  
  9. ------- Либо свичом:
  10.  
  11. let title;
  12.  
  13. switch (destination) {
  14. case 'somedest':
  15.     title = local.foo;
  16.     break;
  17. case 'otherdest':
  18.     // ....
  19. }
Advertisement
Add Comment
Please, Sign In to add comment