开发者

javascript - sort by the order of a second array

Given:

var a1 = [{name:'Scott'}, {name:'John'}, {name:'Albert'}];
var sortOrder开发者_高级运维 = ['John', 'Scott', 'Albert'];

How can I sort the first array (by property) based on the order specified in the second array.

// result: [{name:'John'}, {name:'Scott'}, {name:'Albert'}]

Thanks.


a1.sort(function(a,b) {
  return (
    sortOrder.indexOf(a.name) < sortOrder.indexOf(b.name) ? -1 : 1
  );
});
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜