Compruebe si el objeto no está definido JS

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