Skip to content

Commit

Permalink
add cancel?
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex9532 authored Sep 21, 2024
1 parent f249586 commit e67a9bb
Showing 1 changed file with 30 additions and 5 deletions.
35 changes: 30 additions & 5 deletions hellocrashi.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,36 @@ <H2>(may not work on mobile)</H2>
function dotheCrashthing() {

const times = 9999;
confirm("Are you sure? This could crash your browser, although we have safeguards in place meaning it won't start again on restart.");
confirm("Also, it may crash your computer. Double checking if you still want to start.");
confirm("Really? You asked for it. Once started there is no stopping...");
confirm("Well, alright. FIND THE OK BUTTON! I'LL NEVER LET YOU! HAHAHAHA! ");
confirm("Ohhh... Why did they have to put me on the crasher website? It hurts so much...");
if (confirm("Are you sure? This could crash your browser, although we have safeguards in place meaning it won't start again on restart.")) {
//..
}
else {
return
}
if (confirm("Also, it may crash your computer. Double checking if you still want to start.")) {
//..
}
else {
return
}
if (confirm("Really? You asked for it. Once started there is no stopping...")) {
//..
}
else {
return
}
if (confirm("Well, alright. FIND THE OK BUTTON! I'LL NEVER LET YOU! HAHAHAHA! ")) {
//..
}
else {
return
}
if (confirm("Ohhh... Why did they have to put me on the crasher website? It hurts so much...")) {
//..
}
else {
return
}
alert("That sucker is sure to leav- Oh! Hi... oh god. please... I can't go through this again...");
for(let i = 0; i < times; i++){
console.log("AHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHYWHY");
Expand Down

0 comments on commit e67a9bb

Please sign in to comment.