Angular - State Management
What will be the output of this code?
const name = signal('Alice');
const greeting = computed(() => `Hello, ${name()}`);
name.set('Bob');
console.log(greeting());