control-flowJavaScriptControl FlowEasyWhat is the difference between break and continue?1break exits the loop entirely; continue skips to the next iteration2continue exits the loop; break skips one iteration3Both exit the loop4Both skip an iterationBack to list