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

This commit is contained in:
camperbot
2022-02-16 22:48:09 +05:30
committed by GitHub
parent 51c8b065f5
commit c934590548
48 changed files with 515 additions and 492 deletions

View File

@ -23,7 +23,7 @@ myTest();
console.log(loc);
```
`myTest()` 関数の呼び出しでは、コンソールに文字列 `foo` が表示されます。 The `console.log(loc)` line (outside of the `myTest` function) will throw an error, as `loc` is not defined outside of the function.
`myTest()` 関数の呼び出しでは、コンソールに文字列 `foo` が表示されます。 (`myTest` 関数の外側にある) `console.log(loc)` の行は、エラーをスローします。これは、関数の外側では `loc` が定義されていないためです。
# --instructions--