Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 1
    The bind() option is amazing its just passing the pointer of this Object to be the this on the other object (: Thanks !
    – Stav Bodik
    Commented Mar 13, 2019 at 11:31
  • "…parent context inside child context" is a misleading phrase as this is not part of a parent/child relationship. It often refers to the object a method was called on, but can be any object, or any value in strict mode. "Context" refers to an execution context (of which this is one parameter of many) which can't be referenced because ECMA-262 forbids it.
    – RobG
    Commented Mar 29, 2021 at 9:23