Not getting this question how to solve and what's the intention of the question

Tell us what’s happening:

I am not getting this question so that i can able to present any solution or let me know through your solution

Your code so far
Return the lowest index at which a value (second argument) should be inserted into an array (first argument) once it has been sorted. The returned value should be a number.

For example, getIndexToIns([1,2,3,4], 1.5) should return 1 because it is greater than 1 (index 0), but less than 2 (index 1).

Likewise, getIndexToIns([20,3,5], 19) should return 2 because once the array has been sorted it will look like [3,5,20] and 19 is less than 20 (index 2) and greater than 5 (index 1).

Remember to use Read-Search-Ask if you get stuck. Write your own code.


function getIndexToIns(arr, num) {
  // Find my place in this sorted array.
  return num;
}

getIndexToIns([40, 60], 50);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36.

Link to the challenge:

Example:

values in an array block:
let block = [4, 5, 6, 7, 8];

indexes of array block:
[0, 1, 2, 3, 4]

let newKid = 5.5;

insert newKid into block but in a sorted fashion
[4, 5, 6, 7, 8];
5.5 falls between 5 & 6.

let newBlock = [4, 5, 5.5, 6, 7, 8];

indexes of newBlock
[0, 1, 2, 3, 4, 5];

which index was 5.5 inserted at? 2. That’s what you return.

Thanks i got it , now i can understand