var myobject = new function(){ var private = 'private'; return { show : function(){ alert(private); } }; } myobject.show()