It depends on what you want to do with it. 1. A simple solution if you just want to log it to console car.forEach(car => console.log(car.brand)); Iterate over your car object with forEach. 2. If you want to collect it in an array for further manipulation const brands = car.map(car => car.brand); Map returns a new array of brand in that case.
car.map(item => item.brand)