数组内容排序sort
一、构想
构想依照abcd字母排序
let list2 = list.sort((a, b) => a<b)
二、实现

let list2 = list.sort((a, b) => a.title.localeCompare(b.title))