Skip to content

Instantly share code, notes, and snippets.

@jerzyyy
Created September 14, 2018 05:11
Show Gist options
  • Save jerzyyy/bd6ef8c2b3e900bbf9f96c1f1d70dd63 to your computer and use it in GitHub Desktop.
Save jerzyyy/bd6ef8c2b3e900bbf9f96c1f1d70dd63 to your computer and use it in GitHub Desktop.
patates
const reponse = prompt("Hey mon ami ! Tu aimes ça les patates ?");
let a = ``
if (reponse === "oui") {
for (i = 0; i < 7; i++) {
a = a + '#'
console.log(a);
}
} else if (reponse === "non") {
alert(`dommage`);
} else {
alert(`Je vous sens comme tiraillé`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment