UNPKG

castelog

Version:

Programación JavaScript en castellano.

14 lines • 255 B
let valor = "1"; iterar_sobre_valores: while((valor === "1")) { valor += 1; if((valor === 2)) { break iterar_sobre_valores; }} valor = "1"; iterar_sobre_valores: while((valor === "1")) { valor += 1; if((!(valor === 2))) { continue iterar_sobre_valores; }}