js根据数组里的对象属性排序

//  升序
function mysort(array,property){
  array.sort((a, b) => a[property] - b[property])
}

你可能感兴趣的:(js根据数组里的对象属性排序)