Quiz Angular - Quel sera le résultat du programme ci-dessous?

function f(input: boolean) {
let a = 100;

if (input) {
let b = a + 1;
return b;
}
return b;
}
Trouvez-vous cela utile?

Related Questions