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