--- id: cf1111c1c11feddfaeb8bdef title: Modify Array Data With Indexes challengeType: 1 videoUrl: '' localeTitle: 使用索引修改数组数据 --- ## Description
与字符串不同,数组的条目是可变的 ,可以自由更改。
var ourArray = [50,40,30];
ourArray [0] = 15; //等于[15,40,30]
注意
数组名称和方括号之间不应有任何空格,如array [0] 。尽管JavaScript能够正确处理,但这可能会让其他程序员在阅读代码时感到困惑。
## Instructions
将存储在myArray索引0处的数据修改为值45
## Tests
```yml tests: - text: 'myArray现在应该是[45,64,99]。' testString: 'assert((function(){if(typeof myArray != "undefined" && myArray[0] == 45 && myArray[1] == 64 && myArray[2] == 99){return true;}else{return false;}})(), "myArray should now be [45,64,99].");' - text: 您应该使用正确的索引来修改myArray的值。 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 myArray.");' ```
## Challenge Seed
```js // 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
```js console.info('after the test'); ```
## Solution
```js // solution required ```