mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 19:53:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			667 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			667 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright 2009 the Sputnik authors.  All rights reserved.
 | |
| // This code is governed by the BSD license found in the LICENSE file.
 | |
| 
 | |
| /*---
 | |
| info: Result of number conversion from undefined value is NaN
 | |
| es5id: 9.3_A1_T2
 | |
| description: Undefined convert to Number by implicit transformation
 | |
| ---*/
 | |
| 
 | |
| // CHECK#1
 | |
| if (isNaN(+(undefined)) !== true) {
 | |
|   $ERROR('#1: +(undefined) === Not-a-Number. Actual: ' + (+(undefined)));
 | |
| }
 | |
| 
 | |
| // CHECK#2
 | |
| if (isNaN(+(void 0)) !== true) {
 | |
|   $ERROR('#2: +(void 0) === Not-a-Number. Actual: ' + (+(void 0)));
 | |
| }
 | |
| 
 | |
| // CHECK#3
 | |
| if (isNaN(+(eval("var x"))) !== true) {
 | |
|   $ERROR('#3: +(eval("var x")) === Not-a-Number. Actual: ' + (+(eval("var x"))));
 | |
| }
 |