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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:48:36+00:00 2026-06-17T07:48:36+00:00

I am reading JavaScript: The Definitive Guide, 6th edition, and in section 3.10.3 The

  • 0

I am reading “JavaScript: The Definitive Guide, 6th edition”, and in section “3.10.3 The Scope Chain” (page 55) it states –

“If we think of local variables as properties of some kind of
implementation-defined object, then there is another way to think about variable scope.”

Can someone explain what is meant by “implementation-defined object“?

  • 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-06-17T07:48:37+00:00Added an answer on June 17, 2026 at 7:48 am

    Think of an abstract object that is not exposed to us. It’s defined by the implementation, and available to the implementation only – “implementation” meaning the JavaScript engine which will be running your code.

    For example, consider the following function:

    function f(a,b) {
        var foo = 5;
        return a + b + foo;
    }
    

    The variables and arguments defined within that function’s scope could be represented as an object that would look like this:

    {
        a,
        b,
        foo
    }
    

    The values of the object’s properties can change during the execution of the function. If you call the function with f(1,2), for example, the object will look like this as soon as the function execution starts:

    {
        a: 1,
        b: 2,
        foo: undefined
    }
    

    After foo is assigned 5, it will look like this:

    {
        a: 1,
        b: 2,
        foo: 5
    }
    

    Consider this object as if it was declared inside the function. So, you can access the values of a, b and foo inside the function, but not outside it.

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

Sidebar

Related Questions

Whilst reading the Javascript: The Definitive Guide I was intrigued by the section Defining
I'm reading Javascript: the Definitive Reference , and it says on page 93: On
I am reading Javascript The Definitive Guide. In this book, Events and Event handling,
I'm reading JavaScript the definitive guide and there is code: var o = {x:1,y:{z:3}};
I hope my logic isn't flawed but I'm reading the Definitive Guide to JavaScript
I'm just reading JavaScript: The Definitive Guide by David Flanagan. I'm really enjoing and
I'm reading Javascript - The Definitive Guide . I usually try to imitate the
I have been reading the JavaScript Scripting Guide for Quicktime and in there it
I'm reading in JavaScript for Dummies, page 29 and it is showing the document.writeln
Based on my observation, the book that I am reading about JavaScript states that

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.