Menurunkan urutan di objek di JS

starWarsPeople.map(e=>{
    return e
  }).sort((a,b)=> b.height - a.height);
Clumsy Corncrake