0) {
return this.items.find(x => x.Id === id).Name;
}
Модель Item
export class Item {
constructor(id?: number, name?: string) {
this.Id = id;
this.Name = name;
}
Id: number;
Name: string;
}
Помогло?
> const item = this.items.find(x => x.Id === id) > if (item) { return item.Name }
Почитайте азы js в начале
Обсуждают сегодня