Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7981997
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T10:32:43+00:00 2026-06-04T10:32:43+00:00

I have this function call passed as a string: var dcall = tumbsNav(1); Is

  • 0

I have this function call passed as a string:

var dcall = "tumbsNav(1)";

Is it possible to execute this dynamically like exec in SQL??

exec(dcall)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T10:32:45+00:00Added an answer on June 4, 2026 at 10:32 am

    Wherever you’re storing

    var dcall = "tumbsNav(1)";
    

    You can instead store

    var dcall = function() {
       return tumbsNav(1);
    };
    

    Wherever you were calling it, instead of calling

    eval(dcall);
    

    You can instead call

    dcall();
    

    The only case this wouldn’t work is if tumbsNav wasn’t defined at the time var func = ... is called. Then you would have to store the string. If the string is completely under your control, then there’s no security hole, but be aware of all the problems mentioned by @Porco

    As Kolink mentioned, my example would not cause a problem if tumbsNav was not defined when assigning it with a wrapped anonymous function that calls tumbs. The comment above would only make sense if the example had been the following:

    var dcall = tumbsNav, darg = 1;
    // later in the code, you can call
    dcall(darg) ;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a UDF in sql server. I want to call this function at
I have a function that has this line: var returnString:String = items[0].@month; @month is
I have this static callback function in MyClass, and I try to call another
I have encounters this abap snippet that I have difficulty to comprehend. call function
I have a problem when call applet method from javascript.. I used this function
I have identified this call as a bottleneck in a high pressure function. graphics.DrawImage(smallBitmap,
I have DLL and application that will call some function in this dll. For
I have a jQuery AJAX call with type:'GET' like this: $.ajax({type:'GET',url:'/createUser',data:userId=12345&userName=test, success:function(data){ alert('successful'); }
Say i have this function that dynamically creates my namespace for me when I
I have this existing code: Private Function GetTypeFromName(ByVal FullTypeName As String, ByVal AssemblyName As

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.