class Info { constructor() { header(query("title"),``); this.getInfo(); } async getInfo() { var res = await index.info({ id: query("id"), quantity: query("quantity") }) res.forEach(v => { $(".content").innerHTML+= ` ` }) } } new Info();