new Array(1, 2, 3), delete a[1], for in array PASSED!
new Array(1, 2, 3), delete a[1], for in array PASSED!
new Array(1, 2, 3), delete a[2], for in array PASSED!
new Array(1, 2, 3), delete a[0], for in array PASSED!
new Array(1, 2, 3), x[4] = '5' PASSED!
new Array(1, 2, 3), x[4] = '5', x[3] = '4' PASSED!
create two arrays and concat them together PASSED!
create two arrays and concat them together PASSED!
create two arrays and concat them together PASSED!
create array with 1-4 populated, then shift, array.toString PASSED!
create array with 1-4 populated, then shift, get results PASSED!
create array with 1-3 populated, then pop, array.toString PASSED!
create array with 1-3 populated, then pop, get results PASSED!
create array with 1 populated, then push(2,3), array.toString PASSED!
create array with 1-4 populated, then reverse, array.toString PASSED!
