Skip to content

Instantly share code, notes, and snippets.

@AndrewBuntsev
Created June 22, 2020 04:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndrewBuntsev/cd42351f53f5f946503956ae21ae9c1e to your computer and use it in GitHub Desktop.
Save AndrewBuntsev/cd42351f53f5f946503956ae21ae9c1e to your computer and use it in GitHub Desktop.
<html>
<body>
<script>
function createString() {
return "0".repeat(25 * 1024 * 1024).substring(0, 12);
}
var arr = [];
setInterval(function() {
let str = createString().split('').join('');
arr.push(str);
}, 500);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment