ok, this might have an answer but I'm not sure how to word it to find it. I have a list of lists.
var listOLists = [['q','w','e'],['a'],['z','x']];
is there a way to sort it by length of lists, so I get a result
output.table(listOLists.specialLenghtsort());
    'a'
    'z','x'
    'q','w','e'