function createComparisonFunction(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; } } } var data = [{ name: "Zachary", age: 28 }, { name: "Nicholas", age: 30 }];
data.sort(createComparisonFunction("name"));//按照对象的Name 属性进行排序 alert(data[0].name); //Nicholas; data.sort(createComparisonFunction("age"));//按照对象Age属性进行排序 alert(data[0].name);//Zachary

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-03-15
  • 2021-07-28
  • 2022-01-28
  • 2022-12-23
  • 2022-12-23
  • 2022-02-06
  • 2021-05-15
相关资源
相似解决方案