-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
60 lines (57 loc) · 1.28 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
var tableau = "";
document.addEventListener("keypress", (e) => {
console.log(e.key);
if (e.key == "s") {
if (tableau == "") {
tableau = tableau + "s";
}
else {
console.log("t une vrai merde vraiment");
}
}
if (e.key == "i") {
if (tableau == "s") {
tableau = tableau + "i";
}
else {
console.log("t'es une grosse merde c'est tous ce que je voulais dire");
}
}
if (e.key == "r") {
if (tableau == "si") {
tableau = tableau + "r";
}
else {
console.log("NAN");
}
}
if (e.key == "i") {
if (tableau == "sir") {
tableau = tableau + "i";
}
else {
console.log("FAUX");
}
}
if (e.key == "n") {
if (tableau == "siri") {
tableau = tableau + "n";
}
else {
console.log("NO !");
}
}
if (e.key == "e") {
if (tableau == "sirin") {
tableau = tableau + "e";
}
else {
console.log("Euuhh !");
}
}
if (tableau == "sirine") {
window.open("blog.html");
}
console.log(tableau);
});
///////////////////////////////////////