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

This commit is contained in:
camperbot
2022-05-16 19:36:15 +05:30
committed by GitHub
parent 2c76d8e62b
commit 189b4c3bff
182 changed files with 19710 additions and 427 deletions

View File

@@ -17,19 +17,19 @@ dashedName: understanding-uninitialized-variables
# --hints--
`a` 应该被定义,并且值为 `6`
应该定义变量 `a`,且它的值为 `6`
```js
assert(typeof a === 'number' && a === 6);
```
`b` 应该被定义,并且值为 `15`
应该定义变量 `b`,且它最终的值为 `15`
```js
assert(typeof b === 'number' && b === 15);
```
`c` 的值不能包含 `undefined`,应该为字符串 `I am a String!`
变量 `c` 的值不能包含 `undefined`,应该为字符串 `I am a String!`
```js
assert(!/undefined/.test(c) && c === 'I am a String!');