Skip to content

Instantly share code, notes, and snippets.

@panuhorsmalahti
Created August 21, 2015 15:47
Show Gist options
  • Save panuhorsmalahti/4408a7bc1fb283c1bcc3 to your computer and use it in GitHub Desktop.
Save panuhorsmalahti/4408a7bc1fb283c1bcc3 to your computer and use it in GitHub Desktop.
memleak-test.js
function f(p) {
console.log(Date.now());
var x = [];
while(x.length < 1000000) x.push(x.length);
p = p || {};
setTimeout(function() {
f(p);
}, 25);
};
f();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment