Trong ngôn ngữ lập trình JavaScript, chúng ta được cung cấp phương thức sort()
để sắp xếp dữ liệu của một mảng, nhưng phương thức này vẫn có thể được dùng để sắp xếp các dữ liệu khác, và bài viết này sẽ trình bày cho bạn các phương thức sắp xếp dữ liệu phổ biến.
- Demo
- Phóng to
- Tải lại
- Cửa sổ mới
Miễn phí web hosting 1 năm đầu tại iPage
Nếu bạn vẫn còn đang tìm kiếm một nhà cung cấp hosting đáng tin cậy, tại sao không dành chút thời gian để thử với iPage, chỉ với không quá 40.000 VNĐ/tháng, nhưng bạn sẽ được khuyến mãi kèm với quà tặng trị giá trên 10.000.0000 VNĐ nếu thanh toán cho 24 tháng ~ 900.000 VNĐ?
Có trên 1 triệu khách hàng hiện tại của iPage đã & đang hài lòng với dịch vụ, tuyệt đối chắc chắn bạn cũng sẽ hài lòng giống họ! Quan trọng hơn, khi đăng ký sử dụng web hosting tại iPage thông qua sự giới thiệu của chúng tôi, bạn sẽ được hoàn trả lại toàn bộ số tiền bạn đã sử dụng để mua web hosting tại iPage. Wow, thật tuyệt vời! Bạn không phải tốn bất kì chi phí nào mà vẫn có thể sử dụng miễn phí web hosting chất lượng cao tại iPage trong 12 tháng đầu tiên. Chỉ cần nói chúng tôi biết tài khoản của bạn sau khi đăng ký.
Nếu muốn tìm hiểu thêm về ưu / nhược điểm của iPage, bạn hãy đọc đánh giá của ChọnHostViệt.com nhé!
In JavaScript, we are given a method Sort() to perform sorting. Although Sort() is said to be used for sorting an array, it can also be used to sort anything other than an array itself. In this article we will discuss all about JavaScript array.
Sort() in JavaScript
By default, the method Sort() in JavaScript takes a given array and sort it in lexicographical order and not alphabetical order! This means that the Sort() method sort a given array in dictionary order. Let’s consider the following example of Sort method.
var list =["Zebra", "Monkey", "Donkey"] list.sort() //["Donkey", "Monkey", "Zebra"]
The above look fine when sorting an array of string but when it comes to number we will face a little problem.
var list =[ 39, 108, 21, 55, 18, 9] list.sort() //[108, 18, 21, 39, 55, 9]
Looking at the result of the sort function seems to be unsorted but the fact that it is sorted according to lexicographical order does makes it in an ordered form after using the default sort method. Lucky, JavaScript doesn’t force you to follow lexicographic order. You may also define a function to sort them in your own way.
Reverse Sort()
We get our result in lexicographical order after we performed a Sort() function. What if we want the reverse order of the sort function instead? In JavaScript, there is a function Reverse() which can help us to reverse the result of the array in the opposite order of the result. Consider the following example to illustrate Reverse() method in JavaScript.
var list =["Zebra", "Monkey", "Donkey"] list.sort() //["Donkey", "Monkey", "Zebra"] list.reverse() //["Monkey", "Zebra", "Donkey"]
Simple and powerful.
Customize Sort
The default Sort() function in JavaScript is quite simple and clear. Now, we will look at how we can customize this sort function. JavaScript Sort function does take in a parameter which is a function. Short to say, Sort() Method will sort your array instructed in the given function. However, the return value of the function must be as follow,
- returns a value less than 0: parameter ‘a’ value is less than parameter ‘b’ value. ‘a’ come BEFORE ‘b’.
- returns a value greater than 0: parameter ‘a’ value is more than parameter ‘b’ value. ‘a’ come AFTER ‘b’
- returns exactly 0: parameter ‘a’ and ‘b’ have the same value. no change.
With the above rule, we can create a function that sort our array in numerical order instead of lexicographic order.
function sortmyway(data_A, data_B) { if ( data_A < data_B ) // data_A come before data_B return -1; if ( data_A > data_B ) // data_A come After data_B return 1; return 0; // data_A == data_B, no change. } var list =[ 39, 108, 21, 55, 18, 9] list.sort(sortmyway) // [9, 18, 21, 39, 55, 108]
The above example look good but the function seems to be a bit lengthy. You can change the comparison statement in a shorter form using the ‘?’ symbol and we will get a shorter version of the code above.
function sortmyway(data_A, data_B) { return ((data_A < data_B) ? -1 : ((data_A > data_B) ? 1 : 0)); } var list =[ 39, 108, 21, 55, 18, 9] list.sort(sortmyway) // [9, 18, 21, 39, 55, 108]
We can even shorten the above declaration to perform the same task as shown below,
function sortmyway(data_A, data_B) { return (data_A - data_B); } var list =[ 39, 108, 21, 55, 18, 9] list.sort(sortmyway) //[9, 18, 21, 39, 55, 108]
All the methods above sort the array in ascending order.
Sort Descending order
Using the shortest method i have above, i can declare a sorting function which sort in descending order as follow,
function sortmyway(data_A, data_B) { return (data_B - data_A); } var list =[ 39, 108, 21, 55, 18, 9] list.sort(sortmyway) //[108, 55, 39, 21, 18, 9]
You can also achieve this by using the Reverse() method to eliminate the need to declare two sort function for ascending and descending order.
Random Sort Array
Well, we can also take advantage of the sort function to randomize our array. This way, we do not have to perform any loop which also contribute to function efficiency.
function sortmyway(data_A, data_B) { return 0.5 - Math.random(); //random gives us result between 0 and 1 } var list =[ 39, 108, 21, 55, 18, 9] list.sort(sortmyway) //[21, 9, 39, 108, 18, 55]
Summary
Other than array, we can also sort unordered and ordered list. Sort() method in JavaScript can help us perform different kind of sorting in every type of element not restricting to array only. However, using JavaScript to perform sort of other element other than array can be a lot of pain. Personal advice is to use JavaScript framework such as jQuery or Mootools to ease the job. On the other hand, Sort() method can also be used to substitute unnecessary loop to create a more efficient code especially when comparing each element in an array is required. (we just have to eliminate the return value to perform such task) . Even eliminating duplication in an array is possible with Sort() method!
You can find more JavaScript codes for sorting an Array at here: Algorithms by JavaScript
- Lượt gửi (0)
- Mới
Tạo video doanh nghiệp của bạn bằng AI chỉ với giọng nói hoặc văn bản
chatGPTaz.com
Nói chuyện với ChatGPT bằng ngôn ngữ mẹ đẻ của bạn
Ứng dụng AI Video
Ứng dụng video AI MIỄN PHÍ đầu tiên của bạn
Deepfake Video
Deepfake AI Video Maker
Deepfake
Deepfake AI Video Maker
AI Deep Fake
Deepfake AI Video Maker
AIvidio
AI Video Mobile Solutions
AIvideos
AI Video Platform & Solutions
AIvedio
AI Video App Maker
Artificial General Intelligence
Ai and higher level Artificial General Intelligence (AGI)
Artificial General Intelligence
Ai and higher level Artificial General Intelligence (AGI)
Faceswap AI trực tuyến
Đổi mặt Video, Ảnh & GIF ngay lập tức với Công cụ AI mạnh mẽ - Faceswap AI Trực tuyến MIỄN PHÍ
Faceswap AI trực tuyến
Đổi mặt Video, Ảnh & GIF ngay lập tức với Công cụ AI mạnh mẽ - Faceswap AI Trực tuyến MIỄN PHÍ
Faceswap AI trực tuyến
Đổi mặt Video, Ảnh & GIF ngay lập tức với Công cụ AI mạnh mẽ - Faceswap AI Trực tuyến MIỄN PHÍ
Powerful AI Presentation PPT Maker for FREE
Build an impressive presentation with our free online AI presentation app
Your next top AI Assistant
Claude AI, developed by Anthropic
Your next top AI Assistant
Claude AI, developed by Anthropic
Temu tặng $500 cho người dùng mới
Claim Free Temu $500 Credit via Affiliate & Influencer Program
Tín dụng quảng cáo TikTok miễn phí
Làm chủ quảng cáo TikTok cho hoạt động tiếp thị doanh nghiệp của bạn
Dall-E-OpenAI.com
Tự động tạo ra hình ảnh sáng tạo với AI
chatGPT4.win
Nói chuyện với ChatGPT bằng ngôn ngữ mẹ đẻ của bạn
Sản phẩm AI đầu tiên của Elon Musk - Grok/UN.com
Nói chuyện với Grok AI Chatbot bằng ngôn ngữ của bạn
Công cụ.win
Mở trung tâm công cụ miễn phí để mọi người sử dụng với hàng trăm công cụ
GateIO.gomymobi.com
Airdrop miễn phí để nhận, chia sẻ lên đến 150.000 đô la cho mỗi dự án
iPhoneKer.com
Tiết kiệm tới 630$ khi mua iPhone 16 mới
Mua Robot Tesla Optimus
Đặt mua Tesla Bot: Robot Optimus Gen 2 ngay hôm nay với giá dưới 20.000 đô la