In Node.js, a '______' event is emitted by a readable stream when there is no more data to read.

  • close
  • end
  • finish
  • complete
In Node.js, a 'end' event is emitted by a readable stream when there is no more data to read. This event is commonly used to signify the end of data reading operations from a readable stream. The other options (close, finish, complete) are not used in this context.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *