15.2.3.14-3-3.js (466B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 15.2.3.14-3-3 6 description: > 7 Object.keys returns the standard built-in Array containing own 8 enumerable properties (array) 9 ---*/ 10 11 var o = [1, 2]; 12 var a = Object.keys(o); 13 14 assert.sameValue(a.length, 2, 'a.length'); 15 assert.sameValue(a[0], '0', 'a[0]'); 16 assert.sameValue(a[1], '1', 'a[1]'); 17 18 reportCompare(0, 0);