Angular Signals can be combined to create computed values that automatically update when any of the dependent signals change.
Define one using computed and specifying a derivation function:
celsius = signal(0);
fahrenheit = computed(() => this.celsiu...