en.javascript.info/1-js/06-advanced-functions/03-closure/5-function-in-if/task.md
2022-06-02 10:43:39 +07:00

260 B

importance: 5


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();
*/!*