1 2 3 4 5 6 7 8
function test() { var obj = {}; obj[{}] = 1; f = () => { for (var x of obj) {} }; } for (var i = 0; i < 5; i++) { test(); }