Skip to content

Instantly share code, notes, and snippets.

@MkLHX
Created November 15, 2016 10:51
Show Gist options
  • Save MkLHX/d894105431245e30da312aae7b8559e6 to your computer and use it in GitHub Desktop.
Save MkLHX/d894105431245e30da312aae7b8559e6 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
var ask = confirm('Hey mon ami ! Tu aimes ça les patates ?');
var patate ='';
if (ask){
for(var i=0; i<7; i++){
console.log(patate+='#')
}
}else{
alert('Je vous sens comme tiraillé');
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment