1.8 KiB
Raw Blame History

id, title, challengeType, videoUrl, localeTitle
id title challengeType videoUrl localeTitle
cf1111c1c11feddfaeb8bdef Modify Array Data With Indexes 1 使用索引修改数组数据

Description

与字符串不同,数组的条目是可变的 ,可以自由更改。
var ourArray = [50,40,30];
ourArray [0] = 15; //等于[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;}})(), "<code>myArray</code> should now be [45,64,99].");'
  - text: 您应该使用正确的索引来修改<code>myArray</code>的值。
    testString: 'assert((function(){if(code.match(/myArray\[0\]\s*=\s*/g)){return true;}else{return false;}})(), "You should be using correct index to modify the value in <code>myArray</code>.");'

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

console.info('after the test');

Solution

// solution required