Course · Section 9: Data Structures, Modern Operators and Strings · Lecture 118: Enhanced Object Literals
Implement `keyCount(obj)` that returns the number of own enumerable keys in `obj`.
+ 1 hidden test run on Submit.
Object.keys(obj).length counts the own enumerable properties.
Run your code to see results.