Using label with break or continue provides more control over which part of the code to ________ or ________ in JavaScript.

  • skip, execute
  • terminate, run
  • jump, skip
  • stop, resume
Using labels with break or continue in JavaScript provides more control over which part of the code to skip or execute. Labels allow you to specify which loop or block of code should be affected by break or continue statements when dealing with nested loops or complex control flow.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *