Skip to content

下面的输出是什么?

Posted on:2022年1月9日 at 13:05
for (let i = 1; i < 5; i++) {
  if (i === 3) continue;
  console.log(i);
}

如果某个条件返回 true,则 continue 语句跳过本次迭代。

原文转自:https://fe.ecool.fun/topic/643af0aa-f567-45df-89ac-aaa8b4d8f927