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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:50:28+00:00 2026-05-28T05:50:28+00:00

If there is no binding of functions to instances in javascript how does getName()

  • 0

If there is no binding of functions to instances in javascript how does getName() return john

function Person() {
    this.name = "john";
    this.getName = function() {
        return this.name;
    };
}

var me = new Person();
setTimeout(function(){alert(me.getName())}, 3000);

I though this would refer to the window at the point of call from setTimeout.

See jsFiddle: http://jsfiddle.net/qZeXG/

  • 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-28T05:50:28+00:00Added an answer on May 28, 2026 at 5:50 am

    What’s happening here is that the anonymous function executed by setTimeout closes over the me variable, which is a Person instance. Because of closure, you can still reference me when that function is later called.

    When you invoke me.getName() you’re invoking a method on the Person instance, which sets the value of this to me inside that function. This is just a normal method invocation.

    Note that in the following code:

    var me = new Person();
    setTimeout(function() {
        alert(this);
        alert(me.getName());
    }, 3000);
    

    …the value of this in the first alert is the window object. It’s the ordinary method invocation that is changing the value.

    Consider this final example:

    var me = new Person();
    var getName = me.getName;
    setTimeout(function(){ alert(getName()) }, 3000);
    

    In this case the function also closes over a reference to getName, but the function that that variable points to is invoked without any information about the Person instance it came from. Therefore, the value of this inside getName will be the window object.

    Conclusion? This statement:

    …there is no binding of functions to instances in javascript…

    …is a false assumption.

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

Sidebar

Related Questions

var foo1 = function () { return { init: function () { alert(this+ hello
I have this code: $(document).ready(function() { var number = 10; var offset = 10;
There are two types of query parameters binding in the Hibernate Query. One is
Is there a better way of binding a list of base class to a
Is there a way to retrieve wcf binding type and security mode just from
Is there an equivalent of .NET's data binding in Qt? I want to populate
I know that there are 3 different binding contexts or load contexts: Load LoadFrom
Is there a concise way to define properties in a ViewModel for data binding
the WSHTTP Binding for WCF supports Reliable Session Properties. In there I noticed a
I'm trying to create a binding to libpython using scheme's FFI. To do this,

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.