I have one function named root and at next part I am storing function name in variable (call) . I want to call function by using variable name For Example:-
(note:- not using root() using variable call's value )
call = "root";
root = function() {
name = "This is My root function";
console.log(name)
}
Can we call root function by value of variable (call) Is it possible.