I try to write a method to delete and add item to array i need delete and add methods in a easy way because i am not familiar typescript
export class NgForComponent implements OnInit {
Sayilar: number[];
constructor() {
this.Sayilar = [1, 2, 3, 4, 5];
}
ngOnInit() {
}
}
html
<div>
<ul>
<li *ngFor="let sayi of Sayilar">
{{sayi}}
</li>
</ul>
</div>
<button >Delete</button>