UNPKG
castelog
Version:
latest (0.0.1)
0.0.1
Programación JavaScript en castellano.
github.com/allnulled/castelog
allnulled/castelog
castelog
/
test
/
scripts_de_sintaxis
/
400.n.sentencia_de_interrupcion.js
20 lines
(19 loc)
•
258 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
let valor =
1
; iterar_sobre_valores:
while
(valor <
10
) { valor +=
1
;
if
(valor ===
2
) {
break
iterar_sobre_valores; } } valor =
1
; iterar_sobre_valores:
while
(valor <
10
) { valor +=
1
;
if
((!(valor ===
8
))) {
continue
iterar_sobre_valores; }
else
{
break
; } }