The Buffer.buffer property is an inbuilt application programming interface of class Buffer within buffer module which is used to get the object of array buffer equivalent to this buffer object.
Syntax:
const buf.buffer
Return Value: This property returns the object of array buffer.
Example 1: Filename: index.js
Javascript
const buff = Buffer.from([1, 2, 3, 4, 5]);
const value = buff.buffer;
console.log( "Big Integer :- " + value);
|
Output:
Big Integer :- [object ArrayBuffer]
Example 2: Filename: index.js
Javascript
const arrbuff = new ArrayBuffer(16);
const buffer = Buffer.from(arrbuff);
if (buffer.buffer === arrbuff)
console.log( "both buffer is equivalent" );
else
console.log( "both buffer is not equivalent" );
|
Output:
both buffer is equivalent
Run the index.js file using the following command:
node index.js
Reference: https://nodejs.org/api/buffer.html#buffer_buf_buffer