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

22 lines
260 B
Markdown

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