test262/test/suite/ch15/15.7/15.7.1/S15.7.1.1_A2.js
2011-10-03 13:04:52 -07:00

24 lines
591 B
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* Number() returns +0
*
* @path ch15/15.7/15.7.1/S15.7.1.1_A2.js
* @description Call Number() and check result
*/
//CHECK#1
if( typeof Number() !== "number" ) {
$ERROR('#1: typeof Number() should be "number", actual is "'+typeof Number()+'"');
}
//CHECK#2
if( Number() !== 0 ) {
$ERROR('#2: Number() === 0, actual is '+Number());
} else if( 1/Number() !== Number.POSITIVE_INFINITY ) {
$ERROR('#2: Number() === +0, actual is '+Number());
}