| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| If ToUint32(P) is less than the value of |
| the length property of A, then return |
| description: length === 100, P in [0, 98, 99] |
| $ERROR('#1: x = Array(100); x[0] = 1; x.length === 100. Actual: ' + (x.length)); |
| $ERROR('#2: x = Array(100); x[0] = 1; x[98] = 1; x.length === 100. Actual: ' + (x.length)); |
| $ERROR('#3: x = Array(100); x[0] = 1; x[98] = 1; x[99] = 1; x.length === 100. Actual: ' + (x.length)); |