var Prabir = Prabir || {}; Prabir.Shrestha = Prabir.Shrestha || {}; Prabir.Shrestha.MySDK = function(){ return { public_method : function() { alert('I am a public method'); } }; }; var mySdk = new Prabir.Shrestha.MySDK(); mySdk.public_method();