Angular - Signals
Given this Angular signal-based component code:
What will be printed in the console?
const count = signal(0); count.set(count() + 1); console.log(count());
What will be printed in the console?
