// class class User{ id; name; email; phone; constructor(userJson){ this.id = userJson.id; this.name = userJson.name; this.email = userJson.email; this.phone = userJson.phone; } getUserLi(){ let $li = createTag('li',null); let $id = createTag('span', this.id); let $name = createTag('span', this.name); let $email = createTag('span', this.email); let $phone = createTag('span', this.phone); $li.set..