Created
February 27, 2021 10:15
-
-
Save d1i1m1o1n/d2a5391f09a1834597991d5793a3307c to your computer and use it in GitHub Desktop.
Alternative to switch case
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const page = 'edit'; | |
const content = { | |
create: () => console.log('create'), | |
edit: () => console.log('edit'), | |
view: () => console.log('view') | |
}[page]() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment