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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T20:51:56+00:00 2026-05-24T20:51:56+00:00

What is the calling context of an invoked method or function within another function?

  • 0

What is the calling context of an invoked method or function within another function?

In browsers, the default calling context is the window object. In various situations, how do I avoid this?

If a function is invoked — for example, by theFunction(); — within a containing function, is the invoked function’s calling context the containing function?

In these two examples

(function ()
{
    something.initialize();
}());

and

(function ()
{
    something.initialize.call(this);
}());

…, is the calling context the same?

  • 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-05-24T20:51:57+00:00Added an answer on May 24, 2026 at 8:51 pm

    They are not the same. In the following I assume you were talking about this when you mentioned context.

    In the first example, inside initialize, this will refer to something. In the second one, it will refer to the global object, which is window in browsers.


    What this refers to is determined by how the function was called. There are five cases:

    • func(), calling a function “standalone”: this refers to the global object.

    • new func(), calling a function as constructor method: this will refer to an empty object which inherits from func.prototype.

    • obj.func(), calling a function as property of an object: this will refer to the object obj.

    • func.apply(foo), func.call(foo), invoking a function with apply or call: this refers to the object passed as first argument.

    ECMAScript 5 also introduced .bind() [MDN] which enables you to bind this to a certain object, without immediately calling the function.


    Now you understand why in your second example, inside initialize, this will refer to window:

    The outer function is called “standalone” (first case), so this inside of it will refer to window. Next you are passing this to call, which sets this inside initialize to window (fourth case).


    Further reading:

    • MDN – this, explains all I write above with some examples.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I got this DomainService method I'm calling from my SL ViewModel using the Invoke
Calling Validate() on an XmlDocument requires passing in a ValidationEventHandler delegate. That event function
Calling the ajax called URL works well without ajax eg. http://localhost/ci/controller/method/param_value . But using
I am calling a Page Method from JQuery as described here: http://encosia.com/2008/05/29/using-jquery-to-directly-call-aspnet-ajax-page-methods/ This is
When calling context.SaveChange() , I get an exception: {An error occurred while updating the
I have a WCF service, this is a method which I'd to call: [OperationContract]
I'd like to create a debug function that dumps information about the execution context
Calling all C macro gurus... Is there any way to write a C macro
Calling TextRenderer.MeasureText as follows: TextRenderer.MeasureText(myControl.Text, myControl.Font); and comparing the result to the size of
Calling image = Image.open(data) image.thumbnail((36,36), Image.NEAREST) will maintain the aspect ratio. But I need

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.