I have an array of arrays, each having a series of list items, which I am logging with console.log(jobsList); The output is:

The variable jobsList is created by pushing a bunch of arrays created in a for loop like so:
for (var i=0; i < teamList.length; i++ ) {
jobDirectory.push(newJob);
}
jobsList.push(jobDirectory);
We are then sorting the arrays by length like so:
jobsList.sort(function(a,b){
return a.length < b.length;
});
I need to output each array inside of an unordered list. The desired output is like so:
<h3></h3><ul>//insert list items here</ul>
This would be repeated for every top level array.
$('.row').append(jobsList); throws an error. How do I return all of the arrays inside an unordered list like above?
h3is not allowed insideul. You should place it before yourh3.<li>elements as children of<ul>, so your<h3>will need a new home.