test262/test/built-ins/Array/S15.4.3_A1.1_T2.js

19 lines
535 B
JavaScript
Raw Normal View History

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: |
The value of the internal [[Prototype]] property of
the Array constructor is the Function prototype object
2014-07-25 00:41:42 +02:00
es5id: 15.4.3_A1.1_T2
description: Function.prototype.toString = Object.prototype.toString
---*/
Function.prototype.toString = Object.prototype.toString;
assert.sameValue(
Array.toString(),
"[object Function]",
'Array.toString() must return "[object Function]"'
);