blob: 496c2347ac710602b22e5f28fb3b07a05e6d82bb [file] [log] [blame]
description(
"This test puts an item in a big index and then tries to change it. It shoudl change successfully."
);
var array = [];
array[10001] = 0;
array[10001] = 5;
array[10002] = "a";
array[10002] = "b";
shouldBe('array[10001]', '5');
shouldBe('array[10002]', '"b"');