Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

convert some sections in web to markdown for zh-CN #7494

Merged
merged 3 commits into from
Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,6 @@ console.log(eval(s2.valueOf())); // returns the number 4
- : **通过一串 Unicode 创建字符串。**
- {{jsxref("String.fromCodePoint()")}} {{experimental_inline}}
- : 通过一串 码点 创建字符串。

<!---->

- {{jsxref("String.raw()")}} {{experimental_inline}}
- : 通过模板字符串创建字符串。

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ NaN % 2 // NaN

## 相关链接

<!---->

- [Addition operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Addition)
- [Subtraction operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Subtraction)
- [Division operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Division)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ continue [ label ];
与 {{jsxref("Statements/break", "break")}} 语句的区别在于, continue 并不会终止循环的迭代,而是:

- 在 {{jsxref("Statements/while", "while")}} 循环中,控制流跳转回条件判断;

<!---->

- 在 {{jsxref("Statements/for", "for")}} 循环中,控制流跳转到更新语句。

`continue` 语句可以包含一个可选的标号以控制程序跳转到指定循环的下一次迭代,而非当前循环。此时要求 `continue` 语句在对应的循环内部。
Expand Down
219 changes: 0 additions & 219 deletions files/zh-cn/web/progressive_web_apps/add_to_home_screen/index.html

This file was deleted.

Loading