Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9183195
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T18:44:36+00:00 2026-06-17T18:44:36+00:00

I am sorting my array like this: array.sort((function(index) { return function(a, b){ return (a[index]

  • 0

I am sorting my array like this:

array.sort((function(index) {
    return function(a, b){
        return (a[index] === b[index] ? 0 : (a[index] < b[index] ? -1 :1));
    };
})(0));

As you can see, it is sorted in ascending order.

My question is how do I toggle sorting? For example, if it is already in ascending order then how can I sort it in descending order and vice-versa?

I know to sort in descending I need to modify code like this:

array.sort((function(index) {
    return function(a, b) {
        return (a[index] === b[index] ? 0 : (a[index] < b[index] ? 1 :-1));
    };
})(0));

but I don’t know how to toggle.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T18:44:37+00:00Added an answer on June 17, 2026 at 6:44 pm

    If you know for certain that array is sorted then you can reverse the order by using a simple loop

    var l = array.length;
    for(i=0; i< l / 2; i++) {
       var t = array[i];
       array[i] = array[l - 1 - i];
       array[l - 1 - i] = t;
    }
    

    More simpler solution is to use reverse function (BTW, check this SO Q&A for different reversing algo and their performance)

    If you don’t know the initial state of you array then I will advise associating a custom property to an array that will track the sort order. For example,

    function sortArray(a, isAscending) {
      var currentSort = a["my_sort_order"];
      if (typeof currentSort != 'boolean') {
         // assume it be unsorted, use sort alogorithm
         a.sort(function(a,b) { return isAscending ? a - b : b - a; }); // assuming numerical array, modify as per your needs
      } else if (currentSort != isAscending) {
         // sorted but in different order, reverse the order
         a.reverse(); // or use for loop
      }
      // set the sort order
      a["my_sort_order"] = isAscending ? true : false;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In AS3, Array.sort() took some nice sorting options like: Array.DESCENDING - sorts the array
I would like to sort an array by the value in its first index,
Found a question which already explains this - How to sort an array of
I have a function to sort a JSON object that looks like this: function
How does the following code sort this array to be in numerical order? var
Possible Duplicate: Sorting multidimensional array in PHP How can I sort by key in
I need to sort an array containing arrays in ascending numerical order. The data
I found out how to sort a JSON array at http://www.devcurry.com/2010/05/sorting-json-array.html Now I want
I've been looking at sorting array collections. So far I've seen things like sorting
I'm sorting array: myArray.sort(comparators.some_comparator); and I have several comparator to choose from: comparators =

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.