Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
</head>
<body>
<script>
"use strict";
var objects = window.objects = [];
var allocate = this.allocate = function allocate() {
for (let i = 0; i < 100; i++) {
objects.push({});
}
setTimeout(allocate, 10);
};
allocate();
</script>
</body>
</html>