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 6335339
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T18:50:14+00:00 2026-05-24T18:50:14+00:00

I have 5 variables: a , b , c , d and e ,

  • 0

I have 5 variables: a, b, c, d and e, and their values depend on the user input. Now I want to sort these variables depending on their values in descending order and then print them. For example, I have the following values:

a = 1, b = 1.5, c = 1, d = 3, e = 2

I want to print a list like this:

d = 3
e = 2
b = 1.5
a = 1
c = 1

I have tried to achieve this using associative-array but I failed since it’s not indexed. Could you please help me to solve this issue?

  • 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-05-24T18:50:16+00:00Added an answer on May 24, 2026 at 6:50 pm

    Well, something like

    var vars = {a: 1, b: 1.5, c: 1, d: 3, e: 2}, keys = Object.keys(vars);
    keys.sort(function (a, b) {
        return vars[b] - vars[a];
    });
    keys.forEach(function (key) {
        console.log(key + ' = ' + vars[key]);
    });
    

    seems to do the trick nicely. Note that this uses ES5 Object.keys, which isn’t supported in some browsers, so if you want it to run in Opera and IE < 9, you’ll have to do something like

    if (typeof Object.keys !== 'function') {
        Object.keys = function (obj) {
            var keys = [], i;
            for (i in obj) {
                if (obj.hasOwnProperty(i)) {
                    keys.push(i);
                }
            }
            return keys;
        };
    }
    

    Oh, and it also uses ES5 forEach, so if you need to work with IE < 9, you’ll have to do something like

    if (typeof Array.prototype.forEach !== 'function') {
        Array.prototype.forEach = function (func) {
            for (var i = 0, l = this.length; i < l; i += 1) {
                func(this[i], i);
            }
        };
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a big list of global variables that each have their own setup
I have variables with values like 1.7m 1.8k and 1.2b how can I convert
I have two variables, key and value , and I want to add them
I have two variables: char charTime[] = TIME; char buf[] = SOMETHINGELSE; I want
If I have two variables containing binary values, how do I append them together
I have a little problem in my code. The variables don't want to change
Suppose I have two boolean variables, and I want to do completely different things
I would like to print a list of all environment variables and their values.
I have two Python functions, both of which take variable arguments in their function
I have 3 variables like this: $first = 2; $second = 5; $operation =

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.