Angular - State Management
Given this Angular code snippet:
What will be printed in the console?
const count = signal(0); count.set(5); console.log(count());
What will be printed in the console?
