freeCodeCamp/curriculum/challenges/chinese/02-javascript-algorithms-an.../basic-javascript/modify-array-data-with-inde...

1.5 KiB

id title challengeType videoUrl forumTopicId dashedName
cf1111c1c11feddfaeb8bdef 通过索引修改数组中的数据 1 https://scrimba.com/c/czQM4A8 18241 modify-array-data-with-indexes

--description--

与字符串不同,数组的条目是 可变的 并且可以自由更改,即使数组是用 const 声明的。

示例

const ourArray = [50, 40, 30];
ourArray[0] = 15;

ourArray 值为 [15, 40, 30]

注意: 数组名与方括号之间不应该有任何空格,比如 array [0] 。 尽管 JavaScript 能够正确处理这种情况,但是当其他程序员阅读你写的代码时,这可能让他们感到困惑。

--instructions--

将数组 myArray 中索引为 0 上的值修改为 45

--hints--

myArray 现在应该是 [45, 64, 99]

assert(
  (function () {
    if (
      typeof myArray != 'undefined' &&
      myArray[0] == 45 &&
      myArray[1] == 64 &&
      myArray[2] == 99
    ) {
      return true;
    } else {
      return false;
    }
  })()
);

你应该使用正确的索引修改 myArray 的值。

assert(
  (function () {
    if (code.match(/myArray\[0\]\s*=\s*/g)) {
      return true;
    } else {
      return false;
    }
  })()
);

--seed--

--after-user-code--

if(typeof myArray !== "undefined"){(function(){return myArray;})();}

--seed-contents--

// Setup
const myArray = [18, 64, 99];

// Only change code below this line

--solutions--

const myArray = [18, 64, 99];
myArray[0] = 45;