mirror of
https://github.com/tc39/test262.git
synced 2025-09-20 16:47:53 +02:00
The global isNaN is not precise at all, and Number.isNaN is an ES6 feature that makes it preferrable to use assert's sameValue for NaN values, as it handles it internally using the comparison.
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
info: >
|
|
Number([value]) returns a number value (not a Number object) computed by
|
|
ToNumber(value) if value was supplied
|
|
es5id: 15.7.1.1_A1
|
|
description: Used values "10", 10, new String("10"), new Object(10) and "abc"
|
|
---*/
|
|
|
|
//CHECK#1
|
|
if( typeof Number("10") !== "number" ) {
|
|
$ERROR('#1: typeof Number("10") should be "number", actual is "'+typeof Number("10")+'"');
|
|
}
|
|
|
|
//CHECK#2
|
|
if( typeof Number(10) !== "number" ) {
|
|
$ERROR('#2: typeof Number(10) should be "number", actual is "'+typeof Number(10)+'"');
|
|
}
|
|
|
|
//CHECK#3
|
|
if( typeof Number(new String("10")) !== "number" ) {
|
|
$ERROR('#3: typeof Number(new String("10")) should be "number", actual is "'+typeof Number(new String("10"))+'"');
|
|
}
|
|
|
|
//CHECK#4
|
|
if( typeof Number(new Object(10)) !== "number" ) {
|
|
$ERROR('#4: typeof Number(new Object(10)) should be "number", actual is "'+typeof Number(new Object(10))+'"');
|
|
}
|
|
|
|
//CHECK #5
|
|
assert.sameValue(Number("abc"), NaN, "Number('abc')");
|