Object Descriptors & Property Flags

What's the difference between Object.getOwnPropertyDescriptor() and Object.getOwnPropertyDescriptors()?
const person = {};

person.age = 25;
Object.defineProperty(person, 'name', {
  value: 'John',
  writable: true,
  enumerable: true,
  configurable: true
});

console.log(Object.getOwnPropertyDescriptors(person));
Next Question (24/40)