Skip to content

Instantly share code, notes, and snippets.

@just-a-echo
Created May 5, 2022 00:49
Show Gist options
  • Save just-a-echo/5f7d96cd92ebe5214ce37d5fc79eb34f to your computer and use it in GitHub Desktop.
Save just-a-echo/5f7d96cd92ebe5214ce37d5fc79eb34f to your computer and use it in GitHub Desktop.
Contéudo da aula meet
function solucao(esquerda, direita){
if (esquerda > direita){
console.log("esquerda ganhando");
} else if (esquerda < direita){
console.log("direita ganhando");
} else if (esquerda + direita === 0){
console.log("nenhum voto");
} else {
console.log("empate");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment