Angular - Component Interaction
Given this child component code:
What will the parent component receive when
@Output() change = new EventEmitter<number>();
updateValue() {
this.change.emit(42);
}What will the parent component receive when
updateValue() is called?