summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/isArray/15.4.3.2-0-2.js
blob: 07bb3368de7cd9d3076780d2fd44531ccd45e475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.4.3.2-0-2
description: Array.isArray must exist as a function taking 1 parameter
includes: [runTestCase.js]
---*/

function testcase() {
  if (Array.isArray.length === 1) {
    return true;
  }
 }
runTestCase(testcase);