Last active
July 9, 2025 05:52
-
-
Save mtsmfm/b5c2d87d56b077057f38dcd27395b928 to your computer and use it in GitHub Desktop.
hang.html
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
<html> | |
<head> | |
<title>Hang</title> | |
</head> | |
<body> | |
<button onclick="loop()">Start infinite loop</button> | |
</body> | |
<script> | |
function loop() { | |
setTimeout(() => { | |
console.log('loop start') | |
while (true) {} | |
}, 10000) | |
} | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment