Skip to content

Instantly share code, notes, and snippets.

@sidneisimeao
Created June 24, 2020 22:42
Show Gist options
  • Save sidneisimeao/78e6a2b24c2bf3bf29ede91e35b701b8 to your computer and use it in GitHub Desktop.
Save sidneisimeao/78e6a2b24c2bf3bf29ede91e35b701b8 to your computer and use it in GitHub Desktop.
Teste.
let age = prompt("How old are you?");
let cnh = prompt("Do you have CNH yes/no?");
let message = (age < 18 || cnh =='no')
? "You can't drive. Mandatory to be over 18 and have a CNH"
: "You can drive"
console.log(message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment