--- id: 587d7b7d367417b2b2512b1e title: Generate an Array of All Object Keys with Object.keys() challengeType: 1 videoUrl: '' localeTitle: 使用Object.keys()生成所有对象键的数组 --- ## Description
我们还可以使用Object.keys()方法生成一个数组,其中包含存储在对象中的所有键,并传入一个对象作为参数。这将返回一个数组,其中的字符串表示对象中的每个属性。同样,数组中的条目没有特定的顺序。
## Instructions
完成编写getArrayOfUsers函数,以便它返回一个数组,该数组包含它作为参数接收的对象中的所有属性。
## Tests
```yml tests: - text: users对象仅包含AlanJeffSarahRyan testString: assert('Alan' in users && 'Jeff' in users && 'Sarah' in users && 'Ryan' in users && Object.keys(users).length === 4); - text: getArrayOfUsers函数返回一个数组,其中包含users对象中的所有键 testString: assert((function() { users.Sam = {}; users.Lewis = {}; let R = getArrayOfUsers(users); return (R.indexOf('Alan') !== -1 && R.indexOf('Jeff') !== -1 && R.indexOf('Sarah') !== -1 && R.indexOf('Ryan') !== -1 && R.indexOf('Sam') !== -1 && R.indexOf('Lewis') !== -1); })() === true); ```
## Challenge Seed
```js let users = { Alan: { age: 27, online: false }, Jeff: { age: 32, online: true }, Sarah: { age: 48, online: false }, Ryan: { age: 19, online: true } }; function getArrayOfUsers(obj) { // change code below this line // change code above this line } console.log(getArrayOfUsers(users)); ```
## Solution
```js // solution required ```