1
// 1
const Table = (_ => {
return class {
constructor(parent) {}
async load(url) {}
};
})();
// 2
const table = new Table('#data');
table.load('71_1.json');Last updated
Was this helpful?
// 1
const Table = (_ => {
return class {
constructor(parent) {}
async load(url) {}
};
})();
// 2
const table = new Table('#data');
table.load('71_1.json');Last updated
Was this helpful?
Was this helpful?