JSON_example = {
$(await JSON_table).ready(async function() {
$('#JSON_example').DataTable( {
data: await dataSet,
columns: [
{ title: "Name" },
{ title: "Position" },
{ title: "Office" },
{ title: "Extn." },
{ title: "Start date" },
{ title: "Salary" }
]
} );
} );
}