Last active
July 19, 2020 11:08
-
-
Save abap34/3758b5e798ca8fa2572a9b46bf1e9b02 to your computer and use it in GitHub Desktop.
This file contains 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> | |
<div id="hoge"> hoge </div> | |
<body> | |
<script> | |
for (var i = 0; i < 10; i++) { | |
for (var j = 0; j < 500000000; j++) { } | |
if (i % 2 == 0){ | |
document.getElementById("hoge").innerText = "2" | |
} else { | |
document.getElementById("hoge").innerText = "1" | |
} | |
console.log("update") | |
} | |
document.getElementById("hoge").innerText = "hoge" | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ありがとうございます!