You could use Array.sort()
A very simple implementation would be:
// assuming the array's name to be "exampleArray"
let sortedArray = exampleArray.sort((a, b) => a.ExpertiseSubCategory.localeCompare(b.ExpertiseSubCategory))
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…