Buffer is a temporary memory storage which stores the data when it is being moved from one place to another. It is like an array of integers.
The Buffer.values() Method is used to create a loop or iterating object which contains value of each byte of buffer instance. This method is called automatically when a Buffer is used in a for…of statement.
Syntax:
Buffer.values()
Return Value: It returns an iterator looping through each byte of the buffer.
Below examples illustrate the use of Buffer.values() Method in Node.js:
Example 1:
const buffer = Buffer.from( 'geek' );
for (const value of buffer.values()) {
console.log(value);
}
|
Output:
103
101
101
107
Example 2:
const buffer = Buffer.from( 'geek' );
for (const value of buffer.values()) {
console.log(value);
}
const buffer2 = Buffer.from( 'GEEK' );
for (const value of buffer2.values()) {
console.log(value);
}
var op = Buffer.compare(buffer, buffer2);
console.log(op);
|
Output:
103
101
101
107
71
69
69
75
1
Note: The above program will compile and run by using the node index.js
command.
Reference: https://nodejs.org/api/buffer.html#buffer_buf_values