Skip to content

Instantly share code, notes, and snippets.

@Ludovicmoreau
Created October 3, 2016 13:26
Show Gist options
  • Save Ludovicmoreau/2b78d3083f805a587efb31996420f37b to your computer and use it in GitHub Desktop.
Save Ludovicmoreau/2b78d3083f805a587efb31996420f37b to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<script type="text/javascript" src="pdt.js"></script>
<title>PDT</title>
</head>
<body>
</body>
</html>
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