Created
October 3, 2016 13:26
-
-
Save Ludovicmoreau/2b78d3083f805a587efb31996420f37b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<script type="text/javascript" src="pdt.js"></script> | |
<title>PDT</title> | |
</head> | |
<body> | |
</body> | |
</html> | |
This file contains hidden or 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
var reply = prompt("Hey mon ami ! Tu aimes ça les patates ?"); | |
if (reply == "non"){ | |
alert("Oh Dommage !"); | |
} else if (reply == "oui"){ | |
var ligne = " "; | |
for(var i = 1 ; i <= 7; i++) { | |
ligne = ligne + "#"; | |
console.log(ligne); | |
} | |
} 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