オブジェクトの配列を持っている場合配列1:[Object 1, Object 2, Object 3]
各オブジェクトは次のようになります。
object 1 has properties : creation date, name, class, size where name = Bear
object 2 has properties : creation date, name, class, size where name = Dog
object 3 has properties : creation date, name, class, size where name = Guerilla
そして、これらのオブジェクトをそれぞれの名前に基づいてアルファベット順に並べ替えたいので、配列2は次のようになります。[Object 1 (Bear), Object 2 (Dog), Object 3 (Guerilla)]
Javascriptでこの問題にどのようにアプローチしますか?これを行うための便利な方法はありますか?私はJSに比較的慣れていません。前もって感謝します!