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

  • Home
  • SEARCH
  • 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 8619301
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T06:18:27+00:00 2026-06-12T06:18:27+00:00

I want to programmatically reach a method that is nested inside a object. var

  • 0

I want to programmatically reach a method that is nested inside a object.

var app = {
    property:{
        method:function(){},
        property:"foo"
    }    
}

Normally you would access it like so: app.property.method

But in my case, In runtime I get a string that I want to interpolate that into calling the method function

Now, how can method be accessed programmatically when i have the following string

"app.property.method"       

​
For a reference please see:
http://jsfiddle.net/adardesign/92AnA/

  • 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-12T06:18:28+00:00Added an answer on June 12, 2026 at 6:18 am

    A while ago I wrote this little script to get an object from the string describing its path:

    (function () {
        "use strict";
        if (!Object.fromPath) {
            Object.fromPath = function (context, path) {
                var result,
                    keys,
                    i;
                //if called as `Object.fromPath('foo.bar.baz')`,
                //assume `window` as context
                if (arguments.length < 2) {
                    path = context;
                    context = window;
                }
                //start at the `context` object
                result = context;
                //break the path on `.` characters
                keys = String(path).split('.');
                //`!= null` is being used to break out of the loop
                //if `null` or `undefined are found
                for (i = 0; i < keys.length && result != null; i+= 1) {
                    //iterate down the path, getting the next part
                    //of the path each iteration
                    result = result[keys[i]];
                }
                //return the object as described by the path,
                //or null or undefined if they occur anywhere in the path
                return result;
            };
        }
    }());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Placing an image inside a Span (here : HtmlGenericControl ) programmatically Want to have
I want to programmatically make it so that users can see only particuar items
I want to programmatically download the contents of a web page, but that page
I want to programmatically get the servlet containers port that my Java EE application
I want to programmatically lock all content controls so that the user cannot delete
I want to programmatically select the network card that is connected to the Internet.
I have a div with overflow:scroll and I now want to programmatically scroll that
I'm using jQuery 1.6.1 and I have checkbox that I want to programmatically check
I have a list definition in my solution, and i want programmatically be able
I want to programmatically create a new log4j ConsoleAppender and add it as an

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.