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

  • SEARCH
  • Home
  • 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 6990797
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:24:16+00:00 2026-05-27T19:24:16+00:00

Can someone clarify the difference between a constructor function and a factory function in

  • 0

Can someone clarify the difference between a constructor function and a factory function in Javascript.

When to use one instead of the other?

  • 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-27T19:24:17+00:00Added an answer on May 27, 2026 at 7:24 pm

    The basic difference is that a constructor function is used with the new keyword (which causes JavaScript to automatically create a new object, set this within the function to that object, and return the object):

    var objFromConstructor = new ConstructorFunction();
    

    A factory function is called like a “regular” function:

    var objFromFactory = factoryFunction();
    

    But for it to be considered a “factory” it would need to return a new instance of some object: you wouldn’t call it a “factory” function if it just returned a boolean or something. This does not happen automatically like with new, but it does allow more flexibility for some cases.

    In a really simple example the functions referenced above might look something like this:

    function ConstructorFunction() {
       this.someProp1 = "1";
       this.someProp2 = "2";
    }
    ConstructorFunction.prototype.someMethod = function() { /* whatever */ };
    
    function factoryFunction() {
       var obj = {
          someProp1 : "1",
          someProp2 : "2",
          someMethod: function() { /* whatever */ }
       };
       // other code to manipulate obj in some way here
       return obj;
    }
    

    Of course you can make factory functions much more complicated than that simple example.

    One advantage to factory functions is when the object to be returned could be of several different types depending on some parameter.

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

Sidebar

Related Questions

In the context of data-structures synchronization, can someone clarify the difference between lockless and
In context of gpu, can someone clarify the difference of meanings between: core, threadprocessor,
Can someone please clarify using a SIMPLE user story the full slice of what
I'm hoping someone can clarify this behavior for me, and explain how ASP.NET is
Can someone give an example of a good time to actually use unsafe and
I wonder if someone can clarify what the f behind a floating point number
Can someone confirm or clarify for me: From what I can tell, Java EE
Possible Duplicate: What exactly does database normalization do? Can someone please clarify data normalization?
Can someone show me how to implement a recursive lambda expression to traverse a
Can someone explain the mechanics of a jump table and why is would be

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.