How to sort post category using its Description

You can add custom order fields I suppose as well.

 $categories = get_categories( array(
        'orderby' => 'description',
        'order'   => 'ASC'
    ) );