Skip to content

Advanced working with function: Function in if #3812

Open
@aman20212

Description

@aman20212

Function in if

let phrase = "Hello";

if (true) {
let user = "John";

function sayHi() {
alert(${phrase}, ${user});
}
}

sayHi();

As mentioned, in the solution:
The result is an error.
The function sayHi is declared inside the if, so it only lives inside it. There is no sayHi outside.

But, this is wrong.
once the function is called, it will give us "Hello John" and the explanation is quite simple.
There, won't be any error.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      close