symbol-in-loop.js (98B)
1 function f() { 2 return Object(Symbol()); 3 } 4 5 for (var i = 0; i < 4; i++) { 6 f(); 7 gc(); 8 }