Vérifiez si l'objet n'est pas défini js

if (typeof car.color === 'undefined') {
  // color is undefined
}
Lokesh003