This type of question tests your understanding of function execution, scope, and closures in JavaScript.
Example:
function foo() {
return 'Hello, World!';
}
console.log(foo()); // Output: 'Hello, World!'
Tags: intermediate, JavaScript, Functions