Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: add example about emitter.emit in events documentation #28374

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions doc/api/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,43 @@ to each.

Returns `true` if the event had listeners, `false` otherwise.


```js
const EventEmitter = require('events');
class MyEmitter extends EventEmitter { }

const myEmitter = new MyEmitter();

// First listener
myEmitter.on('event', function firstListener() {
console.log('Helloooo! first listener');
});
// Second listener
myEmitter.on('event', function secondListener(a, b) {
console.log(`an event with parameters ${a},${b} occurred in second listener`);
});
// Third listener
myEmitter.on('event', function thirdListener(...arrgParms) {
let params = '';
arrgParms.forEach((param) => {
params += `-${param}`;
}
);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please move this closing bracket to the line above. It's otherwise a bit confusing.

It could also be simplified by using join:

  const parameters = args.join(', ');

console.log(`an event with parameters ${params} occurred in third listener`);
});

console.log(myEmitter.listeners('event'));
myEmitter.emit('event', 1, 2, 3, 4, 5);

// Prints:
// [ [Function: firstListener],
// [Function: secondListener],
// [Function: thirdListener] ]
felipedc09 marked this conversation as resolved.
Show resolved Hide resolved
// Helloooo! first listener
// an event with parameters 1 - 2, occurred in second listener
felipedc09 marked this conversation as resolved.
Show resolved Hide resolved
// an event with parameters -1-2-3-4-5 occurred in third listener
```

### emitter.eventNames()
<!-- YAML
added: v6.0.0
Expand Down