Prevents the addition of new properties to an object.
preventExtensions(object)
object
An object.
The object that was passed to the function.
let obj = {} Object.preventExtensions(obj) obj.hello = "world" // has no effect obj.hello
undefined