mirror of https://github.com/tc39/test262.git
17 lines
450 B
JavaScript
17 lines
450 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The Number prototype object has the property constructor
|
|
*
|
|
* @path ch15/15.7/15.7.4/S15.7.4_A3.1.js
|
|
* @description The test uses hasOwnProperty() method
|
|
*/
|
|
|
|
//CHECK#1
|
|
if(Number.prototype.hasOwnProperty("constructor") !== true){
|
|
$ERROR('#1: The Number prototype object has the property constructor');
|
|
}
|
|
|
|
|