задача: обратный отсчет времени до конкретной даты, при помощи setInterval, но не получается получить разницу между датами, из-за
TS2362 The left-hand side of an arithmetic operation must be of type 'any', 'number' or an enum
и отсчет времени не запускается
import {Component, Input, OnInit, OnDestroy} from '@angular/core';
@Component({
selector: 'app-summer-counter',
templateUrl: './summer-counter.component.html',
styleUrls: ['./summer-counter.component.css']
})
export class SummerCounterComponent implements OnInit, OnDestroy {
currentDate: Date = new Date();
endDate: Date = new Date(2018, 8, 1, 1, 0, 0);
difdate: number = 0;
sec: number = 0;
min: number = 0;
ours: number = 0;
days: number = 0;
constructor() {
}
ngOnInit() {
this.difdate = setInterval(() => this.endDate - this.currentDate, 1000);
this.sec = setInterval(() => this.difdate / 1000, 1000);
this.min = setInterval(() => this.sec * 60, 1000);
this.ours = setInterval(() => this.min * 60, 1000);
this.days = setInterval(() => this.ours * 24, 1000);
}
ngOnDestroy(): void {
clearInterval(this.difdate);
clearInterval(this.sec);
clearInterval(this.min);
clearInterval(this.ours);
clearInterval(this.days);
}
}