Created
November 15, 2016 10:51
-
-
Save MkLHX/d894105431245e30da312aae7b8559e6 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 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