$.each(responseJson, function (index, flights) {
$("<tr>").appendTo($table)
.append($("<td>").text("first"))
.append($("<td>").text("second"))
.append($("<td>").text("third"))
.append($("<td>").text("four"))
.append($("<td>").text("five"))
});
<table id="tableDiv">
<tr>
<th>Взлет</th>
<th>Приземление</th>
<th>Город</th>
<th>Терминал</th>
<th>Статус</th>
</tr>
</table>