How would I programmatically call an object method? Like MyObject.XVariable(//some function)










0















I have an object, that takes input from an API call to fill it up.



let MyDog = 
Name: 'Dog',

let arrayFunctions;
fetchDogsFunctions(dogAPIUrl).then(res =>
//results is an array that has a list of functions the dog has, like //getStats(), or walkDog()
arrayFunctions = res;
)


Now I want to map through the array results and call the function on my dog like...



arrayFunctions.map(item => 
await MyDog.item(//Params)
)


How can I do this??



Where MyDog is set up from a file, and then depending on the array functions, for each function it programmatically fills in the call to the new function like MyDog.item where item is a variable in an array called "Walk()"










share|improve this question
























  • it is not clear what you want, why you are waiting to MyDog with await if it's object ?

    – Artyom Amiryan
    Nov 13 '18 at 7:52
















0















I have an object, that takes input from an API call to fill it up.



let MyDog = 
Name: 'Dog',

let arrayFunctions;
fetchDogsFunctions(dogAPIUrl).then(res =>
//results is an array that has a list of functions the dog has, like //getStats(), or walkDog()
arrayFunctions = res;
)


Now I want to map through the array results and call the function on my dog like...



arrayFunctions.map(item => 
await MyDog.item(//Params)
)


How can I do this??



Where MyDog is set up from a file, and then depending on the array functions, for each function it programmatically fills in the call to the new function like MyDog.item where item is a variable in an array called "Walk()"










share|improve this question
























  • it is not clear what you want, why you are waiting to MyDog with await if it's object ?

    – Artyom Amiryan
    Nov 13 '18 at 7:52














0












0








0








I have an object, that takes input from an API call to fill it up.



let MyDog = 
Name: 'Dog',

let arrayFunctions;
fetchDogsFunctions(dogAPIUrl).then(res =>
//results is an array that has a list of functions the dog has, like //getStats(), or walkDog()
arrayFunctions = res;
)


Now I want to map through the array results and call the function on my dog like...



arrayFunctions.map(item => 
await MyDog.item(//Params)
)


How can I do this??



Where MyDog is set up from a file, and then depending on the array functions, for each function it programmatically fills in the call to the new function like MyDog.item where item is a variable in an array called "Walk()"










share|improve this question
















I have an object, that takes input from an API call to fill it up.



let MyDog = 
Name: 'Dog',

let arrayFunctions;
fetchDogsFunctions(dogAPIUrl).then(res =>
//results is an array that has a list of functions the dog has, like //getStats(), or walkDog()
arrayFunctions = res;
)


Now I want to map through the array results and call the function on my dog like...



arrayFunctions.map(item => 
await MyDog.item(//Params)
)


How can I do this??



Where MyDog is set up from a file, and then depending on the array functions, for each function it programmatically fills in the call to the new function like MyDog.item where item is a variable in an array called "Walk()"







javascript arrays reactjs






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 14:03







Zach

















asked Nov 13 '18 at 7:41









ZachZach

204




204












  • it is not clear what you want, why you are waiting to MyDog with await if it's object ?

    – Artyom Amiryan
    Nov 13 '18 at 7:52


















  • it is not clear what you want, why you are waiting to MyDog with await if it's object ?

    – Artyom Amiryan
    Nov 13 '18 at 7:52

















it is not clear what you want, why you are waiting to MyDog with await if it's object ?

– Artyom Amiryan
Nov 13 '18 at 7:52






it is not clear what you want, why you are waiting to MyDog with await if it's object ?

– Artyom Amiryan
Nov 13 '18 at 7:52













3 Answers
3






active

oldest

votes


















0














I assumed how your data might have structured. Pls take a look below and you might get the idea of how to call functions dynamically using "await"






const MyDog = 
funA(a) return Promise.resolve('Function A called with parameter ' + a)
, funB(b) return Promise.resolve('Function B called with parameter ' + b)


const arrayFunctions = ['funA', 'funB']

Promise.all(arrayFunctions.map(async (item, i) =>
await MyDog[item](++i))
)
.then(console.log)








share|improve this answer






























    0














    I can't see any property name "item" in your MyDog Object






    share|improve this answer






























      0














      The answer is to do :



      MyDog[item]()


      within the loop.



      I was asking the correct syntax to perform this operation






      share|improve this answer






















        Your Answer






        StackExchange.ifUsing("editor", function ()
        StackExchange.using("externalEditor", function ()
        StackExchange.using("snippets", function ()
        StackExchange.snippets.init();
        );
        );
        , "code-snippets");

        StackExchange.ready(function()
        var channelOptions =
        tags: "".split(" "),
        id: "1"
        ;
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function()
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled)
        StackExchange.using("snippets", function()
        createEditor();
        );

        else
        createEditor();

        );

        function createEditor()
        StackExchange.prepareEditor(
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        imageUploader:
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        ,
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        );



        );













        draft saved

        draft discarded


















        StackExchange.ready(
        function ()
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53276084%2fhow-would-i-programmatically-call-an-object-method-like-myobject-xvariable-so%23new-answer', 'question_page');

        );

        Post as a guest















        Required, but never shown

























        3 Answers
        3






        active

        oldest

        votes








        3 Answers
        3






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        0














        I assumed how your data might have structured. Pls take a look below and you might get the idea of how to call functions dynamically using "await"






        const MyDog = 
        funA(a) return Promise.resolve('Function A called with parameter ' + a)
        , funB(b) return Promise.resolve('Function B called with parameter ' + b)


        const arrayFunctions = ['funA', 'funB']

        Promise.all(arrayFunctions.map(async (item, i) =>
        await MyDog[item](++i))
        )
        .then(console.log)








        share|improve this answer



























          0














          I assumed how your data might have structured. Pls take a look below and you might get the idea of how to call functions dynamically using "await"






          const MyDog = 
          funA(a) return Promise.resolve('Function A called with parameter ' + a)
          , funB(b) return Promise.resolve('Function B called with parameter ' + b)


          const arrayFunctions = ['funA', 'funB']

          Promise.all(arrayFunctions.map(async (item, i) =>
          await MyDog[item](++i))
          )
          .then(console.log)








          share|improve this answer

























            0












            0








            0







            I assumed how your data might have structured. Pls take a look below and you might get the idea of how to call functions dynamically using "await"






            const MyDog = 
            funA(a) return Promise.resolve('Function A called with parameter ' + a)
            , funB(b) return Promise.resolve('Function B called with parameter ' + b)


            const arrayFunctions = ['funA', 'funB']

            Promise.all(arrayFunctions.map(async (item, i) =>
            await MyDog[item](++i))
            )
            .then(console.log)








            share|improve this answer













            I assumed how your data might have structured. Pls take a look below and you might get the idea of how to call functions dynamically using "await"






            const MyDog = 
            funA(a) return Promise.resolve('Function A called with parameter ' + a)
            , funB(b) return Promise.resolve('Function B called with parameter ' + b)


            const arrayFunctions = ['funA', 'funB']

            Promise.all(arrayFunctions.map(async (item, i) =>
            await MyDog[item](++i))
            )
            .then(console.log)








            const MyDog = 
            funA(a) return Promise.resolve('Function A called with parameter ' + a)
            , funB(b) return Promise.resolve('Function B called with parameter ' + b)


            const arrayFunctions = ['funA', 'funB']

            Promise.all(arrayFunctions.map(async (item, i) =>
            await MyDog[item](++i))
            )
            .then(console.log)





            const MyDog = 
            funA(a) return Promise.resolve('Function A called with parameter ' + a)
            , funB(b) return Promise.resolve('Function B called with parameter ' + b)


            const arrayFunctions = ['funA', 'funB']

            Promise.all(arrayFunctions.map(async (item, i) =>
            await MyDog[item](++i))
            )
            .then(console.log)






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 13 '18 at 7:56









            Nitish NarangNitish Narang

            2,9601815




            2,9601815























                0














                I can't see any property name "item" in your MyDog Object






                share|improve this answer



























                  0














                  I can't see any property name "item" in your MyDog Object






                  share|improve this answer

























                    0












                    0








                    0







                    I can't see any property name "item" in your MyDog Object






                    share|improve this answer













                    I can't see any property name "item" in your MyDog Object







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Nov 13 '18 at 7:56









                    HarisHaris

                    679




                    679





















                        0














                        The answer is to do :



                        MyDog[item]()


                        within the loop.



                        I was asking the correct syntax to perform this operation






                        share|improve this answer



























                          0














                          The answer is to do :



                          MyDog[item]()


                          within the loop.



                          I was asking the correct syntax to perform this operation






                          share|improve this answer

























                            0












                            0








                            0







                            The answer is to do :



                            MyDog[item]()


                            within the loop.



                            I was asking the correct syntax to perform this operation






                            share|improve this answer













                            The answer is to do :



                            MyDog[item]()


                            within the loop.



                            I was asking the correct syntax to perform this operation







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Nov 14 '18 at 5:51









                            ZachZach

                            204




                            204



























                                draft saved

                                draft discarded
















































                                Thanks for contributing an answer to Stack Overflow!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid


                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.

                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function ()
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53276084%2fhow-would-i-programmatically-call-an-object-method-like-myobject-xvariable-so%23new-answer', 'question_page');

                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                Use pre created SQLite database for Android project in kotlin

                                Darth Vader #20

                                Ondo