Object.keys

Learn the most powerful and commonly used Object method, 'Object.keys'. We'll discover how it enables us to work with objects as if they were arrays and how we can then use array methods to work with object data.

Like arrays, JavaScript objects have several functions available to them. There’s one that is by far more useful than any of the others: Object.keys.

One way to loop through each of an object’s properties is to use a for-in loop. This will iterate through the properties and allow us to work with the object’s keys.

Get hands-on with 1200+ tech skills courses.