2020-10-06 23:10:08 +05:30

1.7 KiB

id, challengeType, videoUrl, forumTopicId, title
id challengeType videoUrl forumTopicId title
cf1111c1c11feddfaeb8bdef 1 https://scrimba.com/c/czQM4A8 18241 通过索引修改数组中的数据

Description

与字符串的数据不可变不同,数组的数据是可变的,并且可以自由地改变。 示例
var ourArray = [50,40,30];
ourArray[0] = 15; // equals [15,40,30]

提示
数组名称和方括号之间不应有任何空格,如array [0]尽管 JavaScript 能够正确处理,但可能会让看你代码的其他程序员感到困惑。

Instructions

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

Tests

tests:
  - text: <code>myArray</code>的值应该 [45,64,99]。
    testString: assert((function(){if(typeof myArray != 'undefined' && myArray[0] == 45 && myArray[1] == 64 && myArray[2] == 99){return true;}else{return false;}})());
  - text: 你应该使用正确的索引修改<code>myArray</code>的值。
    testString: assert((function(){if(code.match(/myArray\[0\]\s*=\s*/g)){return true;}else{return false;}})());

Challenge Seed

// Example
var ourArray = [18,64,99];
ourArray[1] = 45; // ourArray now equals [18,45,99].

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

// Only change code below this line.


After Test

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

Solution

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