3
Reply

What will be the output of below program? function fun(input: boolean) {let a = 10;if (input) {let b = a + 1;return b;}return b; }