This repository hosts the content of the Modern JavaScript Tutorial, published at https://javascript.info. If you'd like to translate it into your language then fork the English tutorial and go ahead.
The break statement is used in JavaScript to exit a loop prematurely. It is often used when a certain condition is met, and you want to stop the loop's execution immediately. The continue statement is ...