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 7993153
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T13:45:58+00:00 2026-06-04T13:45:58+00:00

I want to be able to do something like this: var MyObject = function(prop)

  • 0

I want to be able to do something like this:

var MyObject = function(prop) {
  this.property = prop;
};

var stringVar = 'MyObject';

var myObject = new stringVar(1);  // This doesn't work.

assertTrue(myObject.property === 1);

I know that this will work:

var myObject = new window[stringVar](1);

but I was wondering if there was a more context neutral way of accomplishing it.

As a side note: I am obviously trying to avoid using eval().

  • 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-06-04T13:46:00+00:00Added an answer on June 4, 2026 at 1:46 pm

    This is a known limitation in Javascript. There’s no way to reference functions by string in a context-neutral way. What you have is all you can do.

    So, if you were to have all this within a closure, it wouldn’t work. Your only option would be to have your constructor as a method of another object:

    var constructors = {
        MyObject: function(prop) {
            this.property = prop;
        }
    }
    
    var stringVar = 'MyObject';
    
    var myObject = new constructors[stringVar](1);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say I want the object to be something like this: var Book = {
I want to do something like this: var w = window.open(javascript: makeAnAjaxRequest();); My question
I want to be able to do something like var XMLquery:String = a1.a2.a3; var
I want something like a canvas, but where i'd be able to manipulate pixels
I want to be able to get something similar to this.. I want to
I want to be able to do this: var test = SomeMethod(s => s.SomeMethod);
I want to be able to download a URL in C++. Something as simple
Lets say I have a class like this: Class User { var $id var
I have a query like this: var q = db.GetTable<Person>().Where(x => x.Employer.CEO != null);
I am doing something like this in a Silverlight 3 datagrid: for (int x

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.