Question: Which statement about event emitters is false?
- Event names must be camelCase strings.
- The emit method allows a arbitrary set of arguments to be passed to the listener functions.
- Any values returned by the listeners for an emitted events are ignored.
- When an event emitter objeect emits an event, all of the functions attached to that specific event are called synchronously.
Answer: The correct answer of the above question is Option A:Event names must be camelCase strings.