I have an object that contains a lot of arrays inside. This array content function-paramenters.
for example: object = {"elem" : [fn1, fn2], "other-elem" : [fn3, fn4, fn5], ... }
I want to make a method who receive a name and when this name fixes with the object element key, it have to execute all the functions that are in this array.
How can I exec this functions?