var ourArray = [50,40,30];注意
ourArray [0] = 15; //等于[15,40,30]
array [0]
。尽管JavaScript能够正确处理,但这可能会让其他程序员在阅读代码时感到困惑。 myArray
索引0
处的数据修改为值45
。 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
.");'
```