Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits = fruits.sort();
document.write(fruits);
for(var i = 0; i < Math.ceil(fruits.length / 2); i++) {
    var temp = fruits[i];
    fruits[i] = fruits[fruits.length - 1 - i];
    fruits[fruits.length - 1 - i] = temp;
}
document.write(fruits);

I'm trying to make a reverse of the ordered (a-z) array fruits, in order to make it z-a in the for loop. Why isn't this working?

share|improve this question
We don't vote to close when a solution's been found. That's reserved for off-topic or inappropriate questions, etc. – Rafe Kettler Dec 23 '10 at 22:11
With your rep, you should be able to close your own question. But better yet, post your solution, and then in a couple of days mark that as the accepted answer (if Patrick's doesn't do it for you). – T.J. Crowder Dec 23 '10 at 22:14

1 Answer

up vote 6 down vote accepted

Just use .reverse().

fruits.reverse();
share|improve this answer
Too easy :D No, but I want to do it like this. – DarkLightA Dec 23 '10 at 22:08
1  
@DarkLightA then tough cookies. – Rafe Kettler Dec 23 '10 at 22:08
Got it. Two errors: firstly I used ceil() instead of Math.ceil(), and I forgot to print the outcome! – DarkLightA Dec 23 '10 at 22:09
@Dark: Your code works for me: jsfiddle.net/MCpnh – user113716 Dec 23 '10 at 22:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.