Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 764813
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T16:47:21+00:00 2026-05-14T16:47:21+00:00

After doing some reading about the Module Pattern, I’ve seen a few ways of

  • 0

After doing some reading about the Module Pattern, I’ve seen a few ways of returning the properties which you want to be public.

One of the most common ways is to declare your public properties and methods right inside of the “return” statement, apart from your private properties and methods. A similar way (the “Revealing” pattern) is to provide simply references to the properties and methods which you want to be public. Lastly, a third technique I saw was to create a new object inside your module function, to which you assign your new properties before returning said object. This was an interesting idea, but requires the creation of a new object.

So I was thinking, why not just use this.propertyName to assign your public properties and methods, and finally use return this at the end? This way seems much simpler to me, as you can create private properties and methods with the usual var or function syntax, or use the this.propertyName syntax to declare your public methods.

Here’s the method I’m suggesting:

(function() {

var privateMethod = function () {
    alert('This is a private method.');
}

this.publicMethod = function () {
    alert('This is a public method.');
}

return this;

})();

Are there any pros/cons to using the method above? What about the others?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T16:47:22+00:00Added an answer on May 14, 2026 at 4:47 pm

    Your function has no object context, so this references to the global window object in this case. Every property you assign to this automatically pollutes the global namespace.

    (function() {
        console.log(this == window); // true
    
        this.publicMethod = function () {
            alert('This is a public method.');
        }
    
    })();
    
    console.log(publicMethod); // function()
    

    You can explicitly pass it an object to tell which context to use.

    var MYAPP = {};
    
    (function() {
        // 'this' will now refer to 'MYAPP'
        this.publicMethod = function () {
            alert('This is a public method.');
        }
    }).call(MYAPP);
    
    console.log(publicMethod); // undefined
    console.log(MYAPP.publichMethod); // function()
    

    Which you can write in somewhat other style:

    var MYAPP = (function(my) {
        var my;
        ⋮
        return my;
    })(MYAPP);
    

    And we arrived to an already discussed pattern. For further details, see Dustin’s article on Scoping anonymous functions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 381k
  • Answers 381k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Send IB object to back programmatically Interface Builder has no… May 14, 2026 at 10:15 pm
  • Editorial Team
    Editorial Team added an answer The advice for removing illegal characters is here: How to… May 14, 2026 at 10:15 pm
  • Editorial Team
    Editorial Team added an answer With SubSonic 2 out of the box you can't. This… May 14, 2026 at 10:15 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.