Angular - Signals
Given the code below, what will be the output of
console.log(fullName()) after firstName.set('Jane') is called?const firstName = signal('John');
const lastName = signal('Doe');
const fullName = computed(() => `${firstName()} ${lastName()}`);
firstName.set('Jane');
console.log(fullName());