JavaScript Practice Test
JavaScript Object Methods
What does `Object.keys()` return?
Select your answer
A
All properties including inherited ones
B
An array of an object's own enumerable property names
C
An array of the object's values
D
An array of [key, value] pairs
Hint