Skip to content
Inspire - Capo Productions

break、continue

1 break

用于 for、for...in、while、do...while、switch,中止当前循环并把程序控制流转到紧接着被中止语句后面的语句

1.1 for

js
for (let i = 0; i < 10; i++) {
  if (i === 5) break
  console.log(i) // 依次打印出 0 1 2 3 4
}

1.2 for...in

js
const condition = {
  name: 'Jack',
  country: 'CN',
  sex: 'male',
  address: 'SZ'
}

for (let key in condition) {
  if (key === 'sex') break
  console.log(key) // 依次打印出 name country
}

1.3 while

js
let i = 0

while (i < 6) {
  if (i === 3) {
    break
  }
  i = i + 1
}

console.log(i) // 3

1.4 do...while

js
let result = ''
let i = 0

do {
  i = i + 1
  result = result + i
} while (i < 5)

console.log(result) // 12345

1.5 switch

js
const food = "sushi"

switch (food) {
  case "sushi":
    console.log("Sushi is originally from Japan.")
    break
  case "pizza":
    console.log("Pizza is originally from Italy.")
    break
  default:
    console.log("I have never heard of that dish.")
    break
}

2 continue

用于跳过循环中的一个迭代,并继续执行循环中的下一个迭代。与 break 语句的区别是, break 是结束整个循环体,continue是结束单次循环

  • 在 while 循环中,控制流跳转回条件判断;
  • 在 for 循环中,控制流跳转到更新语句。

2.1

js
let text = '';

for (let i = 0; i < 10; i++) {
  if (i === 3) {
    continue
  }
  text = text + i
}

console.log(text) // 012456789

当 i 为 3 时,执行 continue,然后跳过 text = text + 1,接着执行 i++,至此本次迭代结束。

04
Preview

2.2 while

js
i = 0
n = 0
while (i < 5) {
  i++
  if (i === 3) {
    continue
  }
  n += i
  console.log(n) // 依次打印出1 3 7 12
}

布局切换

调整 VitePress 的布局样式,以适配不同的阅读习惯和屏幕环境。

全部展开
使侧边栏和内容区域占据整个屏幕的全部宽度。
全部展开,但侧边栏宽度可调
侧边栏宽度可调,但内容区域宽度不变,调整后的侧边栏将可以占据整个屏幕的最大宽度。
全部展开,且侧边栏和内容区域宽度均可调
侧边栏宽度可调,但内容区域宽度不变,调整后的侧边栏将可以占据整个屏幕的最大宽度。
原始宽度
原始的 VitePress 默认布局宽度

页面最大宽度

调整 VitePress 布局中页面的宽度,以适配不同的阅读习惯和屏幕环境。

调整页面最大宽度
一个可调整的滑块,用于选择和自定义页面最大宽度。

内容最大宽度

调整 VitePress 布局中内容区域的宽度,以适配不同的阅读习惯和屏幕环境。

调整内容最大宽度
一个可调整的滑块,用于选择和自定义内容最大宽度。

聚光灯

支持在正文中高亮当前鼠标悬停的行和元素,以优化阅读和专注困难的用户的阅读体验。

ON开启
开启聚光灯。
OFF关闭
关闭聚光灯。