chore(i18n,learn): processed translations (#49559)

This commit is contained in:
camperbot
2023-03-06 19:27:41 +05:30
committed by GitHub
parent 113036dad6
commit 92b33e8b46
693 changed files with 71907 additions and 1059 deletions

View File

@@ -14,12 +14,12 @@ dashedName: selecting-from-many-options-with-switch-statements
这是 `switch` 语句的示例:
```js
switch (lowercaseLetter) {
case "a":
console.log("A");
switch (fruit) {
case "apple":
console.log("The fruit is an apple");
break;
case "b":
console.log("B");
case "orange":
console.log("The fruit is an orange");
break;
}
```