i'm having a function where i need to call another function which 'll we dynamic jus i know the function name.
like my function is
myfunction(obj){
otherfunction(?);
}
otherfunction maybe
otherfunction(obj){
}
or
otherfunction(){
}
i dono know whether to pass the parameter or not.
how can i call the method