Skip to content

Instantly share code, notes, and snippets.

@fredgdaley2
Created April 3, 2022 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fredgdaley2/d9509cbb7ea5d12e117faff5f46618f5 to your computer and use it in GitHub Desktop.
Save fredgdaley2/d9509cbb7ea5d12e117faff5f46618f5 to your computer and use it in GitHub Desktop.
Create javascript constants
const GAME_STATES = Object.freeze({
NOT_STARTED:'Not Started',
PLAYING: 'Playing',
FINISHED: 'Finished'
})
export default GAME_STATES
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment