1.8 KiB
1.8 KiB
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