HP: 100
Score: 0
Wave: 1
Ammo: 30/30
(function(){ var _intervals = []; var _origSetInterval = window.setInterval; window.setInterval = function() { var id = _origSetInterval.apply(window, arguments); _intervals.push(id); return id; }; window.addEventListener('beforeunload', function() { _intervals.forEach(function(id) { clearInterval(id); }); }); })();