Angular - Signals
Consider the following Angular signal code:
What will be the output in the console?
const score = signal(5); score.set(score() * 2); console.log(score());
What will be the output in the console?
