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

174
Vistas
¿Cómo utilizar este emisor de eventos basado en funciones?

En esta respuesta anterior , existe el siguiente emisor de eventos basado en funciones.

Tal vez sea súper obvio cómo usarlo, pero no para mí, así que realmente agradecería si alguien pudiera hacer un ejemplo de hola mundo con él.

¿Alguien puede averiguar cómo usarlo?

 function EventBase() { this.events = {}; }; EventBase.prototype = { on: function (event, listener) { if (typeof event !== 'string') throw new TypeError("Event must be a string"); if (typeof event !== 'string') throw new TypeError("Listener must be a function"); this.events[event] || (this.events[event] = []); this.events[event].push(listener); }, off: function (event, listener) { if (arguments.length === 0) { // remove all listeners this.events = {}; return; } if (!this.events[event]) { // return if there's no event by the given name return; } if (arguments.length === 1) { // remove all listeners for the given event delete this.events[event]; return; } // remove specific listener this.events[event] = this.events[event].filter(function (func) { return func !== listener; }); }, emit: function (event) { if (!this.events[event]) { // return if there's no event by the given name return; } // get args var args = [].slice.call(arguments, 1); // invoke listeners this.events[event].forEach(listener => listener.apply(this, args)); }, getListenerCount: function (event) { // get total number of listeners if (arguments.length === 0) { return Object.keys(this.events).reduce((count, key) => count + this.getListenerCount(key), 0); } // return zero for non-existing events if (!this.events[event]) { return 0; } // return count for specific event return this.events[event].length; } };
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

EventBase es una función constructora. Después de instanciarlo, podemos llamar a los métodos definidos en el prototipo. El método le permite agregar una devolución on llamada de escucha a un determinado nombre de evento. emit permite emitir un nombre de evento, que luego activará el oyente escuchando ese evento

 const event = new EventBase() event.on("connect", () => { console.log("connected") }) event.emit("connect")
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