test262/test/suite/ch15/15.7/15.7.4/S15.7.4_A3.4.js

14 lines
414 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 Number prototype object has the property valueOf
2014-07-25 00:41:42 +02:00
es5id: 15.7.4_A3.4
description: The test uses hasOwnProperty() method
---*/
//CHECK#1
if(Number.prototype.hasOwnProperty("valueOf") !== true){
$ERROR('#1: The Number prototype object has the property valueOf');
}