An ordinary function reaches the end of its body without returning an expression. What is the call result?
Explanation
A function that completes without supplying a return expression produces undefined. JavaScript does not implicitly return the last expression from an ordinary function body, which distinguishes it from an arrow expression body.