In JavaScript, which statement is
used to stop the function execution
and return the specified value?
reset
return
back
submit
Answers
Answered by
1
Answer:
return
Explanation:
When the break statement is used with a switch statement, it breaks out of the switch block. This will stop the execution of more execution of code and/or case testing inside the block.
Similar questions