Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- сonst destinationToTitleMapper = {
- somedest: local.foo,
- otherdest: local.bar,
- // ....
- };
- const title = destinationToTitleMapper[destination];
- ------- Либо свичом:
- let title;
- switch (destination) {
- case 'somedest':
- title = local.foo;
- break;
- case 'otherdest':
- // ....
- }
Advertisement
Add Comment
Please, Sign In to add comment