Q. Which one of the following is the correct output for the given JavaScript code?
Code: const obj ={prop:12};
Object.preventExtensions(obj);
console.log(Object.isExtensible(obj));
β
Correct Answer: (D)
False