Skip to content

Instantly share code, notes, and snippets.

@GeeWee
Created February 13, 2019 07:02
Show Gist options
  • Save GeeWee/7e22f631e1f4d6f442a4f59d249c1927 to your computer and use it in GitHub Desktop.
Save GeeWee/7e22f631e1f4d6f442a4f59d249c1927 to your computer and use it in GitHub Desktop.
// This is the const enum. Notice the const in front.
const enum FRUITS {
APPLE = 'APPLE',
PEAR = 'PEAR',
}
if (someString === FRUITS.APPLE){
console.log("This is an apple!"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment