const 객체명 = {
...
info:function(){
return this.id + " " + this.name;
}
}
document.getElementById("아이디명").innerHTML = 객체명.info();
const 객체명 = {
...
info(){
return this.id + " " + this.name;
}
}
document.getElementById("아이디명").innerHTML = 객체명.info();