Здравствуйте!
Изучаю Angular, столкнулся с ошибкой. Подскажите?
Код: (app.component.ts)
import { Component } from '
@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'Dinamic Title'
number = 42
arr = [1,2,3]
obj = {a:1, b: {c:2}}
img = '
https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQS28qL6h7GloEyizs13fQ7g9yQETeLFF6gJKwu35qmsoxmXNjydAYQnOV50WazWc50Lmc&usqp=CAU'
constructor() {
setTimeout( handler: () => {
console.log('Timeout is over')
}, timeout: 5000)
}
}
Ошибка: Error: src/app/app.component.ts:18:18 - error TS2304: Cannot find name 'handler'.
18 setTimeout( handler: () => {