Skip to content

Instantly share code, notes, and snippets.

@codermarcos
Last active April 17, 2018 14:55
Show Gist options
  • Save codermarcos/bf9aa27256532c5c9c8c58493a18ff70 to your computer and use it in GitHub Desktop.
Save codermarcos/bf9aa27256532c5c9c8c58493a18ff70 to your computer and use it in GitHub Desktop.
Coleta gb
function teste() {
var a = {};
var b = {};
a.b = b; // Cria a referencia em a para o B
b.a = a; // Cria a referencia em b para o A
return 'qualquer coisa';
}
for (let i = 0; i > 1000; i++) {
teste();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment