test262/test/built-ins/Array/isArray/15.4.3.2-0-4.js

24 lines
725 B
JavaScript
Raw Normal View History

// Copyright (c) 2012 Ecma International. All rights reserved.
2015-07-17 17:42:45 +02:00
// This code is governed by the BSD license found in the LICENSE file.
/*---
2017-06-28 20:57:55 +02:00
esid: sec-array.isarray
2014-07-25 00:41:42 +02:00
es5id: 15.4.3.2-0-4
description: Array.isArray return false if its argument is not an Array
---*/
var b_num = Array.isArray(42);
2017-06-28 20:57:55 +02:00
var b_undef = Array.isArray(undefined);
var b_bool = Array.isArray(true);
var b_str = Array.isArray("abc");
var b_obj = Array.isArray({});
var b_null = Array.isArray(null);
2017-06-28 20:57:55 +02:00
assert.sameValue(b_num, false, 'b_num');
assert.sameValue(b_undef, false, 'b_undef');
assert.sameValue(b_bool, false, 'b_bool');
assert.sameValue(b_str, false, 'b_str');
assert.sameValue(b_obj, false, 'b_obj');
assert.sameValue(b_null, false, 'b_null');