References

Object.getOwnPropertyDescriptor()

Leírás

Egy adott tulajdonság leíróobjektumát az Object.getOwnPropertyDescriptor függvénnyel lehet lekérni. Módosítható is.

Szintaxis

Object.getOwnPropertyDescriptor(obj, prop)

Példa

const object1 = {
  property1: 42,
}
 
const descriptor1 = Object.getOwnPropertyDescriptor(object1, 'property1')
 
console.log(descriptor1.configurable)
// Expected output: true
 
console.log(descriptor1.value)
// Expected output: 42
in this article
back to top