Created
October 5, 2021 21:08
-
-
Save juunegreiros/e8971b6027713463cd52790c7a67dfe6 to your computer and use it in GitHub Desktop.
Monitoria
This file contains 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 lugares = { | |
casa: () => console.log('casa'), | |
escola: () => console.log('escola'), | |
} | |
const lugarAtual = 'casa' | |
lugares[lugarAtual] | |
if (lugarAtual == 'casa') { | |
} else if (lugarAtual == 'escola') { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment