What will happen if a return statement does not have an associated expression?
What will happen if a return statement does not have an associated expression? Correct Answer It returns the undefined value
A function without a return statement will return a default value. If the return statement does not have an associated expression then it returns an undefined value.