Сортировать массив по длине персонажей в JS
arr.sort((a, b) => a.length - b.length)
Delightful Dove
arr.sort((a, b) => a.length - b.length)