Created
September 2, 2022 07:26
-
-
Save dmitry-stepanenko/996833bdfa8c498dc42aee4f533fde2a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class AppComponent { | |
readonly animal = new FormControl(‘rabbit’); | |
constructor() { | |
ctrl.valueChanges.subscribe(console.log); | |
animal.setValue(‘hare’); | |
animal.setValue(‘cat’); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment