test262/test/built-ins/Array/length/S15.4.4_A1.3_T1.js

12 lines
416 B
JavaScript
Raw Normal View History

// 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
2014-07-25 00:41:42 +02:00
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');