Skip to content

Instantly share code, notes, and snippets.

@ValeryC
Last active March 9, 2018 08:55
Show Gist options
  • Save ValeryC/b593c418e6ed4d04f457fa2602eb705d to your computer and use it in GitHub Desktop.
Save ValeryC/b593c418e6ed4d04f457fa2602eb705d to your computer and use it in GitHub Desktop.
quete 1 javascripting
var repuser = prompt("Hey mon ami ! Tu aimes ça les patates ? (Y/N)");
var patate= '#';
if(repuser=='Y'){
for(var i=0; i<7; i++){
console.log(patate)
patate += '#';
}
}else if(repuser=='N'){
alert("Dommage la tartiflette c'est bon!")
}
else
alert("Je vous sens comme tiraillé")
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>exo quete javascripting</title>
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="main.js"></script>
</head>
<body>
<p>ouvrir l'inspecteur de votre page web, puis regarder la console :) </p>>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment