en.javascript.info/1-js/06-advanced-functions/03-closure/5-function-in-if/task.md
Ilya Kantor 964ed57c42 closure
2019-12-26 14:59:57 +03:00

20 lines
242 B
Markdown

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