var Demo = (function(){ var Demo = function(){ alert("hello"); console.log("hello console"); }; Demo.prototype.set = function(){ alert("set"); }; return Demo; })();