Skip to content

Instantly share code, notes, and snippets.

@kovaldn
Last active December 19, 2015 12:39
Show Gist options
  • Save kovaldn/5956022 to your computer and use it in GitHub Desktop.
Save kovaldn/5956022 to your computer and use it in GitHub Desktop.
Javascript: for, break
/*
* break
*
* СИНТАКСИС:
* break [label]
* label - дает возможность прервать выполнение сразу нескольких уровней
*/
// пример 1
for(i=0; i<10; i++) {
if (i==5) break;
}
alert(i) // 5
// пример 2
top:
for(i=0; i<10; i++) {
for(j=0; j<15; j++) {
if (i==5 && j==5) break top;
}
}
alert(j+i); // 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment