mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 11:44:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			488 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			488 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright (c) 2012 Ecma International.  All rights reserved.
 | |
| // This code is governed by the BSD license found in the LICENSE file.
 | |
| 
 | |
| /*---
 | |
| es5id: 15.2.3.14-5-b-1
 | |
| description: Object.keys - Verify that 'index' of returned array is ascend by 1
 | |
| ---*/
 | |
| 
 | |
| var obj = {
 | |
|   prop1: 100,
 | |
|   prop2: 200,
 | |
|   prop3: 300
 | |
| };
 | |
| 
 | |
| var array = Object.keys(obj);
 | |
| 
 | |
| var idx = 0;
 | |
| for (var index in array) {
 | |
|   if (array.hasOwnProperty(index)) {
 | |
|     assert.sameValue(index, idx.toString(), 'index');
 | |
|     idx++;
 | |
|   }
 | |
| }
 |