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

This commit is contained in:
camperbot
2022-07-26 01:40:30 -07:00
committed by GitHub
parent e59d58edf1
commit 274f4e63be
465 changed files with 24148 additions and 14078 deletions

View File

@@ -16,7 +16,7 @@ for (let user in users) {
}
```
これは `Alan``Jeff``Sarah``Ryan` を出力し、それぞれの値を独自の行に表示します。
これは `Alan``Jeff``Sarah` の値を、それぞれ別の行に出力します。
このステートメントでは変数 `user` を定義しました。ご覧のように、for...in ステートメントでオブジェクトがループ処理されるとき、この変数は繰り返し処理ごとにオブジェクトの各キーにリセットされ、それぞれのユーザー名がコンソールに出力されます。