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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T19:03:51+00:00 2026-05-29T19:03:51+00:00

Can anybody elaborate below in innerF , what does this refer to? User or

  • 0

Can anybody elaborate below in innerF, what does this refer to? User or innerF?

function User(){
  this.id = 1;
};

User.prototype.sayHi = function(){
    var innerF = function(){
        this.id = 2; // "this" refers to User or innerF ?
    };

    return innerF;
};

Also does the new keyword or anonymous function has to do with changing reference of this keyword?

What if I call it all like this:

var u = User;
var f = u.sayHi();
f();

Or

var u = new User;
var f = u.sayHi();
f();

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-05-29T19:03:53+00:00Added an answer on May 29, 2026 at 7:03 pm

    What the this local refers to inside of innerF will depend on how the function is eventually invoked. It can be invoked in a variety of ways that will change the meaning of this. For example

    var u = new User();
    var innerF = u.sayHi();
    innerF();              // 'this' is window
    innerF.call(u);        // 'this' is 'u'
    innerF.call("hello");  // 'this' is "hello"
    

    Based on your code though it appears that you want this to refer to the instance of User on which sayHi was invoked. If so then you need to store this in a local and refer to that local within innerF.

    User.prototype.sayHi = function(){
        var self = this;
        var innerF = function(){
            self.id = 2; 
        };
    
        return innerF;
    };
    

    Note though that this inside sayHi isn’t guaranteed to point to User instance either. In general it will the same tricks can be done to sayHi that were done to innerF. For example

    var sayHi = u.sayHi;
    sayHi();   // 'this' is window
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anybody tell me what is wrong with my window creation? This function is
Can anybody please tell me why the removeEventListener call is not working? this.addEventListener(Event.ENTER_FRAME, eventCall,
Can anybody tell me why my Async task fails sometimes like this? I tested
can anybody help with this , I can get the 3 states to work
Can anybody help me understand why this update query isn't updating the fields in
Can anybody help me? What should be the datatype for this type -07:00:00 of
Can anybody tell me how to use setError function appropirately for CheckBoxes and RadioButtons.
Can you please elaborate why this code crashes at the places mentioned? I am
Does anybody know a way of doing this (at runtime)? I'm not sure I
Can anybody tell me that what is suitable Xcode version for 10.6.8(snow leopard)?Does Xcode

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.