What is a Buffer in Node.js?
- A A temporary log store
- B A fixed-length sequence of bytes for handling binary data
- C A cache for HTTP responses
- D A queue of pending callbacks
Answer
A fixed-length sequence of bytes for handling binary data
Buffers represent raw binary data outside the V8 heap, used for file contents, network packets and cryptography.





