summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/length.js
blob: 914fb17f83e172b1cc8f9a062ce3b81af2af4d99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (C) 2017 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-properties-of-the-array-prototype-object
description: >
  Array.prototype has a length property
info: |
  22.1.3 Properties of the Array Prototype Object
  
  The Array prototype object is the intrinsic object %ArrayPrototype%. The Array
  prototype object is an Array exotic object and has the internal methods specified
  for such objects. It has a length property whose initial value is 0 and whose
  attributes are { [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]:
    false }.
includes: [propertyHelper.js]
---*/

assert.sameValue(Array.prototype.length, 0);

verifyNotEnumerable(Array.prototype, 'length');
// specify the value so it avoids a RangeError while setting the length
verifyWritable(Array.prototype, 'length', false, 42);
verifyNotConfigurable(Array.prototype, 'length');

reportCompare(0, 0);