References

Object.getOwnPropertyNames()

Leírás

Az objektum összes tulajdonságának nevét tartalmazó tömb.

Szintaxis

Object.getOwnPropertyNames(obj)

Példa

const object1 = {
  a: 1,
  b: 2,
  c: 3,
}
 
console.log(Object.getOwnPropertyNames(object1))
// Expected output: Array ["a", "b", "c"]
in this article
back to top