I am trying to update property after some time .but it is not reflecting on view why ?
Here is my code:
https://stackblitz.com/edit/angular-grjd1u?file=src%2Fapp%2Fhello.component.ts
ngOnInit(){
this.ls = "dddd"
setTimeout(function(){
this.name ="helllllll"
}, 3000);
}
I am trying to update my name property after 3 sec .but it is not updating.
Why change detection is not working ?