We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Nesting Properties Quiz

Refer to the following object:

const company = {
  employees: {
    ceo: {
      name: "Jensen",
      salary: 0,
    },
    engineers: [
      {
        name: "Marie",
        salary: 225000,
      },
      {
        name: "George",
        salary: 205000,
      },
    ],
  },
};