What will be the output of the following JavaScript code?
const obj1 =
{
property1:21
}
const descriptor1 =Object.getOwnPropertyDescriptor(obj1,'property1');
console.log(descriptor1.configurable);
console.log(descriptor1.enumerable);
a) true 21
b) true false
c) false false
d) true true