0 votes
in JavaScript by

What output will this code present:

//nfe (named function expression)

var Foo = Function Bar()

{

return 7;

};

typeof Bar();

1 Answer

0 votes
by

Output = Reference Error. The function definition can only have one reference variable as the function name.

...