* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
50 lines
1.4 KiB
Markdown
50 lines
1.4 KiB
Markdown
---
|
|
id: 587d7b84367417b2b2512b36
|
|
title: 捕获未闭合的括号、方括号、大括号和引号
|
|
challengeType: 1
|
|
forumTopicId: 301190
|
|
dashedName: catch-unclosed-parentheses-brackets-braces-and-quotes
|
|
---
|
|
|
|
# --description--
|
|
|
|
要注意的另一个语法错误是所有的小括号、方括号、花括号和引号都必须配对。当你编辑代码并插入新代码其中带有括号时,很容易忘记括号闭合。 此外,在将代码块嵌套到其他代码块时要小心,例如将回调函数作为参数添加到方法中。
|
|
|
|
避免这种错误的一种方法是,一次性输入完这些符号,然后将光标移回它们之间继续编写。好在,现在大部分编辑器都会帮你自动补全。
|
|
|
|
# --instructions--
|
|
|
|
修复代码中的两个符号配对错误。
|
|
|
|
# --hints--
|
|
|
|
你应该修复数组缺少的部分。
|
|
|
|
```js
|
|
assert(code.match(/myArray\s*?=\s*?\[\s*?1\s*?,\s*?2\s*?,\s*?3\s*?\];/g));
|
|
```
|
|
|
|
你应该修复`.reduce()`方法缺少的部分。控制台应输出 "Sum of array values is: 6"。
|
|
|
|
```js
|
|
assert(arraySum === 6);
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```js
|
|
let myArray = [1, 2, 3;
|
|
let arraySum = myArray.reduce((previous, current => previous + current);
|
|
console.log(`Sum of array values is: ${arraySum}`);
|
|
```
|
|
|
|
# --solutions--
|
|
|
|
```js
|
|
let myArray = [1, 2, 3];
|
|
let arraySum = myArray.reduce((previous, current) => previous + current);
|
|
console.log(`Sum of array values is: ${arraySum}`);
|
|
```
|