References

Object.defineProperties()

Leírás

Egyszerre több tulajdonsás ig meghatározható az Object.defineProperties függvény segítségével.

Szintaxis

Object.defineProperties(obj, props)

Példa

const object1 = {}
 
Object.defineProperties(object1, {
  property1: {
    value: 42,
    writable: true,
  },
 
  property2: {},
})
 
console.log(object1.property1)
// Expected output: 42
in this article
back to top