blob: d014595fe9f3472de0daf013913f113d2427f252 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
"length" property of Arrays is tested with valid value.
includes: [propertyHelper.js]
---*/
var array = [1, 2, 3];
verifyWritable(array, "length");
assert.sameValue(array.length, 3, '`verifyWritable` should be non-destructive.');
reportCompare(0, 0);
|