summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/isArray/15.4.3.2-0-4.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Array/isArray/15.4.3.2-0-4.js')
-rw-r--r--js/src/tests/test262/built-ins/Array/isArray/15.4.3.2-0-4.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Array/isArray/15.4.3.2-0-4.js b/js/src/tests/test262/built-ins/Array/isArray/15.4.3.2-0-4.js
new file mode 100644
index 0000000000..c5ee865fc5
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Array/isArray/15.4.3.2-0-4.js
@@ -0,0 +1,24 @@
+// Copyright (c) 2012 Ecma International. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-array.isarray
+description: Array.isArray return false if its argument is not an Array
+---*/
+
+var b_num = Array.isArray(42);
+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);
+
+
+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');
+
+reportCompare(0, 0);