Skip to content

Instantly share code, notes, and snippets.

@ardydedase
Last active November 26, 2020 14:01
Show Gist options
  • Select an option

  • Save ardydedase/9867e63773c935070048af9e42c75066 to your computer and use it in GitHub Desktop.

Select an option

Save ardydedase/9867e63773c935070048af9e42c75066 to your computer and use it in GitHub Desktop.
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