242 B
242 B
Function in if
Look at the code. What will be the result of the call at the last line?
let phrase = "Hello";
if (true) {
let user = "John";
function sayHi() {
alert(`${phrase}, ${user}`);
}
}
*!*
sayHi();
*/!*