1.
let d1 = Object.getOwnPropertyDescriptor({name: "hello"}, "name");
console.info(d1);
Why is it printed
{ value: "hello",
writable: true,
enumerable: true,
configurable: true }
and the properties defined by Object.defineProperties () are false
by default.