Angular - Change Detection
Given this Angular code snippet, what will happen after 1 second?
constructor(private zone: NgZone) {
setTimeout(() => {
this.zone.run(() => {
this.message = 'Updated!';
});
}, 1000);
}