What does a function without a return statement return in JavaScript?
undefined. If a function has no return, or a return with no expression, it returns undefined to the caller.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in How JavaScript Functions Return Values
It evaluates the return expression, hands the value to the caller, and immediately pops the current frame from the call stack. Code after return in the function body is not executed.
Because the braces are interpreted as a block body, not an object literal. Wrapping the object in parentheses (n) => ({ x: 1 }) makes it an expression body that returns the object.
Yes. A function that returns another function is a higher-order function. The returned function keeps a reference to the outer variable environment, creating a closure.
Still have questions?
Browse all our FAQs or reach out to our support team
