In Node.js, '______' is used to signify the end of a writable stream.

  • finish
  • close
  • end
  • complete
In Node.js, the 'end' event is used to signify the end of a writable stream. This event is emitted when all data has been written to the stream and it's safe to end it. The other options (finish, close, complete) are not typically used for this purpose.
Add your answer
Loading...

Leave a comment

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