What does `Object.isFrozen()` return for a frozen object?

JavaScript Professional Easy

JavaScript Professional — Easy

What does `Object.isFrozen()` return for a frozen object?

Key points

  • The method `Object.isFrozen()` specifically checks if an object is frozen.
  • A frozen object in JavaScript is immutable.
  • The correct answer is `true` because it indicates that the object is indeed frozen.

Ready to go further?

Related questions