Open In App

Node.js Buffer.includes() Method

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.includes() method checks whether the provided value is present or included in the buffer or not.



Syntax:

buffer.includes( value, byteOffset, encoding );

Parameters: This method accept three parameters which are listed below:



Return Value: This method returns a Boolean value either True or False depending on the value. If value found in buffer then return True otherwise return False.

Below examples illustrate the use of Buffer.includes() Method in Node.js:

Example 1:




// Node.js program to demonstrate the  
// Buffer.includes() Method 
      
// Creating a buffer
const buffer = new Buffer('Geek One');
  
console.log(buffer.includes('Geek'));

Output:

true

Example 2:




// Node program to demonstrate the  
// Buffer.includes() Method 
      
const buffer = Buffer.from(
        'GeeksforGeeks: A computer science portal');
  
// Started checking the value from index 15 only
const output = buffer.includes('Geek', 15);
  
console.log(output);

Output:

false

Note: The above program will compile and run by using the node index.js command.

Reference: https://nodejs.org/api/buffer.html#buffer_buf_includes_value_byteoffset_encoding

Article Tags :