Type Your Code Here

// Create an empty object const object1 = {}; // Check if object1 is extensible, meaning new properties can be added to it console.log(Object.isExtensible(object1)); // Check if the object1 is equal to itself console.log(Object.is(object1));

Output: