mirror of
https://github.com/tc39/test262.git
synced 2025-07-31 01:44:54 +02:00
* Automated assertion message update: Array.from * Automated assertion message update: Array.isArray * Automated assertion message update: Array length property * Automated assertion message update: Array.of * Automated assertion message update: Array * Automated assertion message update: Array.prototype.at * Automated assertion message update: Array.prototype.concat * Automated assertion message update: compareArray -> assert.compareArray
12 lines
416 B
JavaScript
12 lines
416 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-properties-of-the-array-prototype-object
|
|
info: Array prototype object has a length property
|
|
es5id: 15.4.4_A1.3_T1
|
|
description: Array.prototype.length === 0
|
|
---*/
|
|
|
|
assert.sameValue(Array.prototype.length, 0, 'The value of Array.prototype.length is expected to be 0');
|