Write Your JavaScript Code Here

// Object.is():- method of JavaScript is used to determine whether two values are the same value. There is a special built-in method that compares values. // Object.is(value1, value2); const obj1={} console.log(Object.is(obj1));

Output: