Question #225

Author: admin
tags: Node.js  
Buffer objects are used...
...to represent a sequence of bytes.
..to store a function call arguments.
..to start a TCP server to listen on some port.
..to get cryptographic functionality that includes a set of wrappers for OpenSSL's hash, HMAC, cipher, decipher, sign, and verify functions.
Buffer objects are used to represent a fixed-length sequence of bytes. Many Node.js APIs support Buffers.
The Buffer class is a subclass of JavaScript's Uint8Array class and extends it with methods that cover additional use cases.
Node.js APIs accept plain Uint8Arrays wherever Buffers are supported as well.
Rate the difficulty of the question:
easyhard