Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How js compares functions

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly shows you "js how to compare functions", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "js how to compare functions" this article.

Ratio function

The purpose of the comparison function is to define another sort order.

The comparison function should return a negative, zero, or positive value, depending on the parameter:

Function (a, b) {return Amurb}

When the sort () function compares two values, it sends the values to the comparison function and sorts them based on the values returned (negative, zero, or positive).

Example:

When comparing 40 and 100, the sort () method calls the comparison function function (40100).

This function calculates 40-100 and returns-60 (negative).

The sort function will sort 40 to a value lower than 100.

You can use the following code snippet to test numeric and alphabetical ordering:

Sort in numerical order

Var points = [40,100,1,5,25,10]; document.getElementById ("demo") [xss_clean] = points;function myFunction1 () {points.sort (); document.getElementById ("demo") [xss_clean] = points;} function myFunction2 () {points.sort (function (a, b) {return a-b}); document.getElementById ("demo") [xss_clean] = points } these are all the contents of the article "how to compare functions in js". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report