How do I call a dynamically-named method in Javascript? How do I call a dynamically-named method in Javascript? javascript javascript

How do I call a dynamically-named method in Javascript?


Assuming the populate_Colours method is in the global namespace, you may use the following code, which exploits both that all object properties may be accessed as though the object were an associative array, and that all global objects are actually properties of the window host object.

var method_name = "Colours";var method_prefix = "populate_";// Call function:window[method_prefix + method_name](arg1, arg2);


As Triptych points out, you can call any global scope function by finding it in the host object's contents.

A cleaner method, which pollutes the global namespace much less, is to explicitly put the functions into an array directly like so:

var dyn_functions = [];dyn_functions['populate_Colours'] = function (arg1, arg2) {                 // function body           };dyn_functions['populate_Shapes'] = function (arg1, arg2) {                 // function body           };// calling one of the functionsvar result = dyn_functions['populate_Shapes'](1, 2);// this works as well due to the similarity between arrays and objectsvar result2 = dyn_functions.populate_Shapes(1, 2);

This array could also be a property of some object other than the global host object too meaning that you can effectively create your own namespace as many JS libraries such as jQuery do. This is useful for reducing conflicts if/when you include multiple separate utility libraries in the same page, and (other parts of your design permitting) can make it easier to reuse the code in other pages.

You could also use an object like so, which you might find cleaner:

var dyn_functions = {};dyn_functions.populate_Colours = function (arg1, arg2) {                 // function body           };dyn_functions['populate_Shapes'] = function (arg1, arg2) {                 // function body           };// calling one of the functionsvar result = dyn_functions.populate_Shapes(1, 2);// this works as well due to the similarity between arrays and objectsvar result2 = dyn_functions['populate_Shapes'](1, 2);

Note that with either an array or an object, you can use either method of setting or accessing the functions, and can of course store other objects in there too. You can further reduce the syntax of either method for content that isn't that dynamic by using JS literal notation like so:

var dyn_functions = {           populate_Colours:function (arg1, arg2) {                 // function body           };         , populate_Shapes:function (arg1, arg2) {                 // function body           };};

Edit: of course for larger blocks of functionality you can expand the above to the very common "module pattern" which is a popular way to encapsulate code features in an organised manner.


I would recommend NOT to use global / window / eval for this purpose.
Instead, do it this way:

define all methods as properties of Handler:

var Handler={};Handler.application_run = function (name) {console.log(name)}

Now call it like this

var somefunc = "application_run";Handler[somefunc]('jerry');

Output: jerry


Case when importing functions from different files

import { func1, func2 } from "../utility";const Handler= {  func1,  func2};Handler["func1"]("sic mundus");Handler["func2"]("creatus est");