freeCodeCamp/curriculum/challenges/chinese/02-javascript-algorithms-an.../debugging/catch-off-by-one-errors-whe...

99 lines
2.7 KiB
Markdown
Raw Normal View History

---
id: 587d7b86367417b2b2512b3b
challengeType: 1
forumTopicId: 301189
2020-10-01 15:54:21 +00:00
title: 捕获使用索引的时候出现的错误
---
## Description
<section id='description'>
当试图访问字符串或数组的特定索引(分割或访问一个片段)或循环索引时,有时会出现<code>Off by one errors</code>错误(有时称为 OBOE。JavaScript 索引从<code>0</code>开始,而不是<code>1</code>,这意味着最后一个索引总会比字符串或数组的长度少 1。如果尝试访问等于长度的索引程序可能会抛出“索引超出范围”引用错误或打印出<code>undefined</code>
当使用将索引范围作为参数的字符串或数组方法时,阅读相关的文档并了解参数中的索引的包含性(即是否考虑进返回值中)很重要。以下是一些错误的示例:
```js
let alphabet = "abcdefghijklmnopqrstuvwxyz";
let len = alphabet.length;
for (let i = 0; i <= len; i++) {
// 在最后多了一次循环
console.log(alphabet[i]);
}
for (let j = 1; j < len; j++) {
// 循环少了一次,漏掉了索引 0 处的字符
console.log(alphabet[j]);
}
for (let k = 0; k < len; k++) {
// 不多不少,这才是正确的
console.log(alphabet[k]);
}
```
</section>
## Instructions
<section id='instructions'>
修复以下函数中的两个索引错误,以便将 1 到 5 之间(包含 1 和 5的所有数字打印到控制台。
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: 你应该设置循环的初始条件,使循环从第一个索引开始。
testString: assert(code.match(/i\s*?=\s*?0\s*?;/g).length == 1);
- text: 你应修复循环的初始条件,使循环从索引 0 开始。
testString: assert(!code.match(/i\s?=\s*?1\s*?;/g));
- text: 你应设置循环的终止条件,使循环在最后一个索引处停止。
testString: assert(code.match(/i\s*?<\s*?len\s*?;/g).length == 1);
- text: 你应修复循环的终止条件,使循环在索引为字符串长度减 1 时停止。
testString: assert(!code.match(/i\s*?<=\s*?len;/g));
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function countToFive() {
let firstFive = "12345";
let len = firstFive.length;
// Fix the line below
for (let i = 1; i <= len; i++) {
// Do not alter code below this line
console.log(firstFive[i]);
}
}
countToFive();
```
</div>
</section>
## Solution
<section id='solution'>
```js
function countToFive() {
let firstFive = "12345";
let len = firstFive.length;
// Fix the line below
for (let i = 0; i < len; i++) {
// Do not alter code below this line
console.log(firstFive[i]);
}
}
countToFive();
```
</section>