Hash Tables & JavaScript Objects

What information does getOwnPropertyDescriptor return about the property?
const obj = { name: 'test' };
const descriptor = Object.getOwnPropertyDescriptor(obj, 'name');
console.log(descriptor);
Next Question (6/20)