Answers for "sort arrays according to first array js"

3

javascript sort object by key

function sortObjectByKeys(o) {
    return Object.keys(o).sort().reduce((r, k) => (r[k] = o[k], r), {});
}
var unsorted = {"c":"crane","b":"boy","a":"ant"};
var sorted=sortObjectByKeys(unsorted); //{a: "ant", b: "boy", c: "crane"}
Posted by: Guest on August-02-2019
1

sort arrays according to first array js

itemsArray.sort(function(a, b){  
  return sortingArr.indexOf(a) - sortingArr.indexOf(b);
});
Posted by: Guest on August-17-2020

Code answers related to "sort arrays according to first array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language