Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created April 1, 2020 03:14
Show Gist options
  • Save manakuro/a30a617472a72b25eb56d669c081e058 to your computer and use it in GitHub Desktop.
Save manakuro/a30a617472a72b25eb56d669c081e058 to your computer and use it in GitHub Desktop.
export const getAnimal = (code) => {
if (code === 1) return 'CATS'
if (code === 2) return 'DOGS'
if (code === 3) return 'RABBITS'
return null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment