Skip to content

Instantly share code, notes, and snippets.

@mtsmfm
Last active July 9, 2025 05:52
Show Gist options
  • Save mtsmfm/b5c2d87d56b077057f38dcd27395b928 to your computer and use it in GitHub Desktop.
Save mtsmfm/b5c2d87d56b077057f38dcd27395b928 to your computer and use it in GitHub Desktop.
hang.html
<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