break / continue


break = breaks out of a loop entirely


continue = skip an iteration of a loop


let age;
console.log(age)

result: 8