const object1 = {
property1: 103 // Initializing an object with a property named 'property1' and assigning it a value of 103.
};
const descriptors1 = Object.getOwnPropertyDescriptors(object1); // Retrieving property descriptors of all properties of object1.
console.log(descriptors1.property1.writable); // Outputting whether the property1 is writable or not.
console.log(descriptors1.property1.value); // Outputting the value of the property1.