-
-
Save ardydedase/9867e63773c935070048af9e42c75066 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 variantA = () => console.log('show variant A') | |
| const variantB = () => console.log('show variant B') | |
| const variantFunctionMap: object = { | |
| 'A': variantA, | |
| 'B': variantB, | |
| } | |
| // if we want to show variant A. | |
| variantFunctionMap['A']() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment