search
HomeWeb Front-endJS TutorialAn article to talk about execution context in Javascript

An article to talk about execution context in Javascript

Feb 14, 2023 pm 07:41 PM
javascriptexecution context

This article will talk about the execution context in Javascript and share a thinking question. Through the analysis of the thinking question, you will surely have a deeper understanding of the execution context.

An article to talk about execution context in Javascript

In the previous articles, we have an in-depth understanding of the three important members of the execution context: variable objects, scope chains, and this. This article is the first The collection of the contents of the four articles aggregates scattered knowledge points and makes a simple consolidation. I don’t know if anyone came here from the previous article. Our last article left a question. Through the analysis of the question, I will have a deeper understanding of the execution context.

Thinking Questions

In order to slightly complicate the case, a few modifications have been made, but the points examined in the original question have not been changed.

function func(value){
    getValue = function(){
        console.log(value);
    };
    return this
}
            
function getValue(){
    console.log(5);
}

Func(1).getValue(); //为什么是1呢?

Specific execution analysis

Execute global code, create a global execution context, and the global context is pushed into the execution context stack

ECStack = [ globalContext ];

Initialize the global context

globalContext = {
    VO: {
        func: reference to function func(){},
        getValue: reference to function getValue(){}
    },
    Scope: [globalContext.VO],
    this: globalContext.VO //全局上下文
}

Initializing the global context creates two functions at the same time, so their parent scope chains will also be saved in their internal properties [[scope]]

func.[[scope]] = [
     globalContext.VO
];
getValue.[[scope]] = [
     globalContext.VO
];

At this time, code execution begins, When the last statement is executed, the func function is executed first, which creates a step-by-step func function execution context:

  • Copy function [[scope]] attribute to create a scope chain

  • Create the active object with arguments

  • Initialize the active object

  • Push the active object into the top of the checksfunccope scope chain.

  • Create this, simple analysis: MemberExpression value is func, func is a function object, of course a Reference, where its base value is EnvironmentRecord, so its this value is ImplicitThisValue( ref), the return value is always undefined. In non-strict mode, its value will be implicitly converted to a global object.

funcContext = {
    AO: {
        arguments: { // 数组
            0: 1,
            length: 1
        }
    },
    Scope: [AO, globalContext.VO],
    this: undefined
}

Some people may have questions, what about getValue in func? , because it does not have a variable declaration, so it is actually an attribute assignment operation, which will be executed later at runtime.

Create the function execution context and push it into the execution context stack

    ECStack = [
        funcContext,
        globalContext
    ];

The function starts executing. This is the key to why the final output is 1, the first sentence assignment operation , then you need to find the variable getValue along the execution context, then let's look at the scope in funcContext. First find funcContext.AO. Obviously the attribute getValue does not exist, then look up along the scope chain and find it. globalContext.VO, getValue is found. At this time, the getValue attribute in the global scope will be reassigned. What is assigned is a new version of the function, and the function scope is re-created, and the parent of this new getValue function is re-assigned. Level scope chains are stored in their internal properties [[scope]]:

getValue .[[scope]] = [ funcContext.AO, globalContext.VO ];

Then continue to return this and find this of funcContext, that is, return undefined; func execution context pops

ECStack = [ globalContext ];

Continue executionFunc(1).getValue(), the first half returns undefined. At this time, the system implicitly converts to a global variable object and finds the getValue attribute from the global variable object. At this time, we found that getValue was no longer the boy it was back then. The function execution context of the new getValue was pushed onto the stack:

getValueContext = {
    AO: {
        arguments: { // 数组
            length: 0
        }
    },
    Scope: [ AO, funcContext.AO, globalContext.VO ],
    this: undefined
} ECStack = [
    getValueContext,
    globalContext
 ];

function started to execute and found that she wanted to output value, along the scope Go look for it. There is no such attribute in getValueContext.AO. Continue to search and find funcContext.AO (Attention!). If you find the value in the formal parameter, then the corresponding value will be output. 1.

After the function is executed, getValueContext and globalContext are popped off the stack and destroyed one after another, and the code is completed.

Summary

This film uses a simple but not simple example to connect the previous four articles and completely analyze the execution context when JS code is executed. I hope everyone can have a deeper understanding of this work process. However, I wonder if any attentive students have discovered that in the above example, during the execution of the getValue function, from the step of finding the attribute value (marking the position), at that time the func function has obviously been executed, and its execution context has been released. stack, why can we still find the value attribute from its execution context? This is actually the principle of closure generation. In the next article, we will still use this example to learn the principle of closure generation.

[Recommended learning: javascript advanced tutorial]

The above is the detailed content of An article to talk about execution context in Javascript. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
Python vs. JavaScript: A Comparative Analysis for DevelopersPython vs. JavaScript: A Comparative Analysis for DevelopersMay 09, 2025 am 12:22 AM

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

JavaScript Frameworks: Powering Modern Web DevelopmentJavaScript Frameworks: Powering Modern Web DevelopmentMay 02, 2025 am 12:04 AM

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

The Relationship Between JavaScript, C  , and BrowsersThe Relationship Between JavaScript, C , and BrowsersMay 01, 2025 am 12:06 AM

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft