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 8383751
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T17:14:27+00:00 2026-06-09T17:14:27+00:00

I have this issue where i have 2 files 1) containing main() and other

  • 0

I have this issue where i have 2 files
1) containing main() and other stuff related to the main UI
inside main() there are some functions
2) another file that makes the connection from the server to the UI

I am unable to find any solution to call functions from main() from the secondary file ( I know this is not a godd programming-design but i’ve already written a lot of code)

Thanks:)

  • 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-09T17:14:28+00:00Added an answer on June 9, 2026 at 5:14 pm

    In js, functions are your scope constraints. So, consider the following code:

    function main(){
        function callMom(){
            alert('hi mom!');
        }
    }
    
    function goAboutYourDay(){
        brushTeeth(); // works
        callMom(); // wont work
    }
    
    function brushTeeth(){
        alert('brush brush brush');
    }
    

    Given your situation, you might consider returning some of main’s functions like this:

    function main(){
        var callMom = function(){ 
            alert('hi mom!');
        }
    
        return {
            callMommy: callMom
        };
    }
    
    function goAboutYourDay(){
        var m = main();
        m.callMommy(); 
    }
    

    Here’s how you would do it with prototypes:

    var Main = function(){
        this.message = "Will you send some candy?";
    };
    
    Main.prototype.callMom = function(){
        alert('Hi Mom! ' + this.message);
    };
    
    function otherFile(){
        // you could create a new instance of Main if there isn't one available to you here
        var main = new Main(); 
        main.callMom();    
    }
    
    otherFile();
    ​
    

    Here are a few jsfiddles so that you can play with these examples:
    http://jsfiddle.net/lbstr/A3dSB/
    http://jsfiddle.net/lbstr/FyDAL/
    http://jsfiddle.net/lbstr/2TLu2/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I got this issue. I have about 10k xml files containing a bunch of
What is the issue with this code? Here we have two files: classA.h and
This is more of an approach issue than how-to. I have a main form/document
Let's say we have two files. match.txt : A file containing patterns to match:
I have this issue trying to get all the text nodes in an HTML
I have this issue: first, I execute a SQL query using Java and then
I have this issue with ComboBox that uses IEnumerable<Brush> as ItemsSource; the problem lies
I have this issue, I'm have a user selected in LDAP through ldap search,
I just have this issue with reading from a network stream in C#. Since
I already have this issue but I cannot remember how to solved it. (I

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.