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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T07:42:22+00:00 2026-05-12T07:42:22+00:00

I have a generic question about javascript specification or implementation of functions pointer (delegates?)

  • 0

I have a generic question about javascript specification or implementation of functions pointer (delegates?) which are points to object methods.

Please, read the following code snippet. Here we have an object with a method using ‘this’ to access an object field. When we call this method as usual (o.method();), returns value of the specified field of the object. But when we create pointer to this method (callback) and invoke it, returns an undefined value, because ‘this’ inside method’s scope now is global object.

var o = {
    field : 'value', 
    method : function() {
        return this.field;
    }
};

o.method(); // returns 'value'

var callback = o.method;

callback(); // returns 'undefined' cause 'this' is global object

So, where is my ‘this’?

  • 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-12T07:42:22+00:00Added an answer on May 12, 2026 at 7:42 am

    “this” is late binding. that is, it gets bound to a thing just before the function is executed. What it is bound to depends on how you call your function.

    if you call it like (function invokation):

       myfunction();
    

    “this” is bound to the global object

    if you call it like (method invokation):

       myobject.myfunction();
    

    “this” gets bound to “myobject”

    you can also call it like so (call invokation):

       myfunction.call(myobject);
    

    in which case “this” gets bound to myobject

    there is also (constructor invokation):

     new MyFunction();
    

    in which “this” gets bound to a newly constructed blank object whose prototype is MyFunction.prototype.

    this is how the creators of javascript talk about it, anyway. (and I think it is discussed this way in the spec) Different ways of invoking a function.

    the new version of the ecmascript standard (ecmascript5) includes the prototype library’s “bind” method, which returns a new function with “this” prebound to something you specify. for instance:

      mynewfunction = myfunction.bind(myobject);
      mynewfunction();
    

    the invokation of mynewfunction has “this” already bound to myobject.

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

Sidebar

Ask A Question

Stats

  • Questions 211k
  • Answers 211k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Try replacing your inner double quotes with single quotes, like… May 12, 2026 at 10:13 pm
  • Editorial Team
    Editorial Team added an answer In your case, since you say "A process (of a… May 12, 2026 at 10:13 pm
  • Editorial Team
    Editorial Team added an answer webkit is a html renderer, not a complete browser. I… May 12, 2026 at 10:13 pm

Related Questions

I have a box popup that appears on mouseover for some links. The box
I've seen this question regading the importing of js-files related to the tag content
I need to send a JavaScript array via querystring to my .ashx. In my
I've inherited a pre-compiled website that uses javascript created in a generic handler (ashx).

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.