Please enable JavaScript to use CodeHS

Introducción a la Informática en JavaScript (Golden) (2022)

Lesson 5.10 Loop and a Half

Description

En esta lección, los estudiantes aprenderán a crear un Loop and Half. Un loop and a half es una forma específica de escribir un while loop con la condición true (verdadero). Dentro del loop, los estudiantes crean un valor SENTINEL para salir del loop cada vez que se cumpla la condición, haciendo que el loop termine.


Objective

Students will be able to:

  • Explain how the loop-and-a-half structure is different from a traditional while loop
  • Explain what an infinite loop is
  • Explain what the break statement does
  • Create programs that use the loop-and-a-half structure to repeat code until a SENTINEL is met, causing the program to break out of the loop