Return Statement
- A function can return any type covered so far with the return statement,
- A return statement can occur anywhere and immediately ends the
function, restarting execution of the caller function.
- A function will also return after executing the last statement. The return value is undefined.
return exp;