Open In App

D3.js bisector.right() Method

Improve
Improve
Like Article
Like
Save
Share
Report

With the help of bisector.right() method, we can insert the element in the sorted array in such a way that if the value in the array is equal to or greater than the element to be inserted than will insert in the right of the present element by using this method.

Syntax:

bisector.right(arr, ele)

Parameter: This function has following parameter as mentioned above and described below:

  • arr: It is the array passed as parameter.
  • ele: It is the value to be inserted.

Return value: It return the index of newly inserted element.

Note: To execute the below examples, you have to install the d3 library by using this command prompt we have to execute the following command.

npm install d3

Example 1: In this example, we can see that by using bisector.right() method, we are able to get the index of element which is to be inserted at the right of the sorted array.




// Defining d3 contrib variable  
var d3 = require('d3');
  
var bisect = d3.bisector(i => i.int)
var gfg = bisect.right([1, 2, 3, 4, 5], 3)
  
console.log(gfg)


Output:

5

Example 2:




// Defining d3 contrib variable  
var d3 = require('d3');
  
var arr = []
for(var i = 0; i < 5; i++) {
    arr.push(Math.random());
}
  
var bisect = d3.bisector(i => i.int)
var gfg = bisect.right(arr, 3)
  
console.log(gfg)


Output:

5

Last Updated : 23 Sep, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads