Here's what I'm trying to do -- this is pseudo code and doesn't work. Does anyone know how to accomplish this for real:
// Define the class
MyClass = Class.extend({});
// Store the class name in a string
var classNameString = 'MyClass';
// Instantiate the object using the class name string
var myObject = new classNameString();
If
classNameString
come from secure source you can useThis solution works with namespaces and is independent on platform (browser/server).
BTW: window is the reference to the global Object in browser JavaScript. Which is also
this
, and should work even in non-browser environments such as Node.js, Chrome extensions, transpiled code etc.var obj = new this[classNameString]();
The limitation is that the class being called must be in the global context. If you want to apply the same to a scoped class you need to do:
var obj = (Function('return new ' + classNameString))()
However, there really is no reason to use a string. JavaScript functions are themselves objects, just like strings which are objects also.
Edit
Here is a better way to get the global scope that works in strict mode as well as non-browser JS environments:
From: How to get the global object in JavaScript?
Would it work if you did something like this:
..?
Here's a more robust solution that will work with namespaced functions:
Example:
Here is improved version of Yuriy's method that also handles objects.
If MyClass is global, you can access it as a property of window object (assuming your code runs in a browser) using subscript notation.