References

Object.freeze()

Leírás

Az objektum befagyasztása, azaz semmiféle változtatás nem engedélyezett az objektumon.

Szintaxis

Object.freeze(obj)

Példa

const obj = {
  prop: 42,
}
 
Object.freeze(obj)
 
obj.prop = 33
// Throws an error in strict mode
 
console.log(obj.prop)
// Expected output: 42
in this article
back to top