Open In App

Node.js Buffer.writeBigInt64BE() Method

The Buffer.writeBigInt64BE() method is an inbuilt application programming interface of class Buffer within the Buffer module which is used to writes big endian 64-bits Big integer value to an allocated buffer at the specified offset. Syntax:

Buffer.writeBigInt64BE( value, offset )

Parameters: This method accept two parameters as mentioned above and described below:



Return Value: This method returns an integer value that is the sum of offset and number of bytes written. Below examples illustrate the use of Buffer.writeBigInt64BE( ) method in Node.js: Example 1: Filename: index.js 




// Node.js program to demonstrate the
// buffer.writeBigInt64BE() method
const buf = Buffer.allocUnsafe(8);
 
// Writing big integer value into buffer
// by using writeBigInt64BE() method
buf.writeBigInt64BE(0x01030405060708n, 0);
 
// Display the buffer
console.log(buf);

Run the index.js file using the following command:



node index.js

Output:

<Buffer 00 01 03 04 05 06 07 08>

Example 2: Filename: index.js 




// Node.js program to demonstrate the
// buffer.writeBigInt64BE() method
const buf = Buffer.allocUnsafe(8);
 
// Writing big integer value into buffer
// by using writeBigInt64BE() method
buf.writeBigInt64BE(0xaa03040506efffn, 0);
 
// Display the buffer
console.log(buf);

Run the index.js file using the following command:

node index.js

Output:

<Buffer 00 aa 03 04 05 06 ef ff>

Reference: https://nodejs.org/dist/latest-v12.x/docs/api/buffer.html#buffer_buf_writebigint64be_value_offset

Article Tags :