JS 函数中返回另一个函数




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

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM