var Ob = new Object();
{
Ob.a="돼지고기";
Ob.b="돼지간";
Ob.c="돼지내장";
}

 

 

var Ob = {
a="돼지고기",

b="돼지간",
c="돼지내장",
}

 

 

var Ob = function(a,b,c)
{
this.a="돼지고기";
this.b="돼지간";
this.c="돼지내장";

return this;
}

 

 

이렇게 맞냐?