References

Object.getOwnPropertyDescriptors()

Leírás

Egy adott összes tulajdonság leíróobjektumát adja vissza.

Szintaxis

Object.getOwnPropertyDescriptors(obj)

Példa

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