/    Sign up×
Community /Pin to ProfileBookmark

is there possible to do sorting method in Javascript, if it is possible, how can i find some example. thank you

to post a comment
JavaScript

6 Comments(s)

Copy linkTweet thisAlerts:
@FangMay 24.2004 — [URL=http://devedge.netscape.com/library/manuals/2000/javascript/1.5/reference/array.html#1196882]sort[/URL]
Copy linkTweet thisAlerts:
@handong888authorMay 24.2004 — how can I sort 1 2 3 4, I want the order to be 4 3 2 1. thank you very much.
Copy linkTweet thisAlerts:
@FangMay 24.2004 — numberArray=[1, 2, 3, 4];
alert(numberArray.reverse());
Copy linkTweet thisAlerts:
@handong888authorMay 24.2004 — if there are only 4 numbers, there is no order, how can you sort from biggest to smallest. thank you
Copy linkTweet thisAlerts:
@FangMay 24.2004 — function compareNumbers(a, b) {
return a - b;
}
numberArray=[3, 1, 4, 2];
numberArray.sort(compareNumbers);
alert(numberArray.reverse());
Copy linkTweet thisAlerts:
@Khalid_AliMay 24.2004 — BTW if you call sort() twice on a an array it will first sort it from start to end and then fromend to start.

Which means if you keep calling sort() it will keep reversing the order
×

Success!

Help @handong888 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...