Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

109
Vistas
Javascript make object string keys enumerable

I have a class set up with string keys, like this:

class MyClass {
    constructor() {
        this.id = 0
        this.data = []
    }

    "GET /data"(req, res) {
        res.json(this.data)
    }
}

The goal is to dynamically loop over the functions in an instance like this:

for (let key in new MyClass()) {
    console.log(key)
}

However, everything I have tried has only resulted in the keys id and data.

I can manually get the function and run it just fine:

let item = new MyClass()
item["GET /data"]()

But it does not show up in any dynamic enumeration I have tried.

Manually setting the enumeration also works:

class MyClass {
    constructor() {
        this.id = 0
        this.data = []
        
        // Here!!!
        Object.defineProperty(this, "GET /data", {
            value: this["GET /data"],
            writable: false,
            enumerable: true,
            configurable: true
        })
    }

    "GET /data"(req, res) {
        res.json(this.data)
    }
}

console.log(Object.keys(new MyClass())) // ["id", "data", "GET /data"]

But that defeats the purpose of doing it dynamically. Is there any way to either dynamically get the names of functions with string keys, or make every property enumerable?

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

There are two ways to do this

Object.keys(myObj)

or

for (let key in myObj) {
}
about 4 years ago · Juan Pablo Isaza Denunciar

0

Object.getOwnPropertyNames(MyClass.prototype)

gives you

["constructor", "GET /data"]
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda