ngOnInit() { this.battleInit(); this.id = setInterval(() => { this.battleInit(); }, 5000); } ngOnDestroy() { if (this.id) { clearInterval(this.id); } }