Periksa apakah objek tidak ditentukan JS

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