// Copyright (C) 2015 the V8 project authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file.
/*--- description: > Spares arrays are only equivalent if they have the same length. includes: [compareArray.js]
---*/
assert.compareArray([,], [,], 'Sparse arrays of the same length are equivalent.'); assert.throws(Test262Error, () => { assert.compareArray([,], [,,]);
}, 'Sparse arrays of differing lengths are not equivalent.'); assert.throws(Test262Error, () => { assert.compareArray([,,], [,]);
}, 'Sparse arrays of differing lengths are not equivalent.'); assert.throws(Test262Error, () => { assert.compareArray([,], []);
}, 'Sparse arrays are not equivalent to empty arrays.'); assert.throws(Test262Error, () => { assert.compareArray([], [,]);
}, 'Sparse arrays are not equivalent to empty arrays.');
reportCompare(0, 0);
Messung V0.5
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.