JavaScript implements an array of objects sorted by different fields

Source: Internet
Author: User
Suppose there is an array of objects that we want to sort by an array of object properties, and the comparison function passed to the arrays sort () method receives two parameters, that is, the value to compare. However, we need a way to indicate which property to sort by. To solve this problem, you can define a function that receives a property name and then creates a comparison function based on the property name, which is the definition of the function.
function Createcomparionfun (PropertyName) {    return function (object1,object2)   {       var value1=object1[ PropertyName];       var value2=object2[propertyname];      if (value1<value2)      {         return-1;      } else if (value1>value2)      {          return 1;      } else {        return 0;}}   }


The above function can be used in this case as in the following example.

var data=[{name: "Zom", Age:18},{name: "NBD", age:20}];d Ata.sort (creatcomparionfun ("name")); alert (data[0].name);// Nbddata.sort (Creatcomparionfun ("Age")); alert (data[0].name);//zom
This makes it possible to sort by different attributes.

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

JavaScript implements an array of objects sorted by different fields

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.