Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Eduardo Diaz
PLUS
Eduardo Diaz
Courses Plus Student 6,048 Points

Checking if an object has multiple keys ?

I have an array of object:

const arr =  [
 {a:1, b:1, c:1},
 {a:2, b:2, c:3}
]

I want to check that each element on the list contains the keys a, b, c

arr.every(item => item.hasOwnProperty('a','b','c'));

However hasOwnProperty only checks for the first property and not all of them.

I could

arr.every(item => item.hasOwnProperty('a','1')

But then I'll get a true value.

1 Answer

Steven Parker
Steven Parker
229,657 Points

You were close the 2nd time, you just need to check each property separately:

arr.every(item => item.hasOwnProperty("a")
               && item.hasOwnProperty("b")
               && item.hasOwnProperty("c") );