w3resource

JavaScript Sorting Algorithm: Sorted last index

JavaScript Sorting Algorithm: Exercise-23 with Solution

Write a JavaScript program to find the highest index at which a value should be inserted into an array to maintain its sort order.

  • Loosely check if the array is sorted in descending order.
  • Use Array.prototype.reverse() and Array.prototype.findIndex() to find the appropriate last index where the element should be inserted.

Sample Solution:

JavaScript Code:

const sortedLastIndex = (arr, n) => {
  const isDescending = arr[0] > arr[arr.length - 1];
  const index = arr
    .reverse()
    .findIndex(el => (isDescending ? n <= el : n >= el));
  return index === -1 ? 0 : arr.length - index;
}; 
console.log(sortedLastIndex([10, 20, 30, 30, 40], 30));

Sample Output:

4

Flowchart:

JavaScript Searching and Sorting Algorithm Exercises: Sorted last index.

Live Demo:

See the Pen javascript-common-editor by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript program to finds the lowest index at which a value should be inserted into an array in order to maintain its sorting order.
Next: Write a JavaScript program to check if a numeric array is sorted or not.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/javascript-exercises/searching-and-sorting-algorithm/searching-and-sorting-algorithm-exercise-23.php