loading multiple json from a given directory

Is it possible to load multiple json file from a given directory in a datatable view

Yep,

table.load("data1.json")
  .then(() => table.load("data2.json"))
  .then(() => table.load("data3.json"))
  .then(() => table.load("data4.json"))