Skip to content

Commit 678a0f4

Browse files
committed
restructure behind scenes chapter
1 parent c9069c1 commit 678a0f4

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

en/behind-scenes/call-stack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Understanding Call Stacks in JavaScript
55
---
66

77

8-
## Understanding Call Stacks in JavaScript
8+
## Call Stacks in JavaScript
99

1010
In JavaScript, a Call Stack is a data structure that uses the Last-In, First-Out (LIFO) principle to temporarily store and manage function invocation (call).
1111

en/behind-scenes/engine.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pageNumber: 258
44
description: Understanding JavaScript Engines and how they execute JavaScript code.
55
---
66

7-
## Understanding JavaScript Engines
7+
## JavaScript Engines
88

99
A JavaScript engine is a program or an interpreter that executes JavaScript code. The most well-known JavaScript engines are V8 (used in Google Chrome and Node.js), SpiderMonkey (used in Firefox), and JavaScriptCore (used in Safari).
1010

en/behind-scenes/event-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pageNumber: 259
44
description: Understanding the Event Loop in JavaScript.
55
---
66

7-
## Understanding the Event Loop in JavaScript
7+
## Event Loop in JavaScript
88

99
The event loop is a fundamental concept in JavaScript that allows for asynchronous programming. It is responsible for executing code, collecting and processing events, and executing queued sub-tasks.
1010

en/behind-scenes/execution-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pageNumber: 260
44
description: Understanding Execution Context in JavaScript.
55
---
66

7-
## Understanding Execution Context in JavaScript
7+
## Execution Context in JavaScript
88

99
In JavaScript, an execution context is an environment where the code is evaluated and executed. It is a fundamental concept that helps manage the scope and behavior of variables and functions.
1010

en/behind-scenes/memory-heap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pageNumber: 261
44
description: Understanding Memory Heap in JavaScript.
55
---
66

7-
## Understanding Memory Heap in JavaScript
7+
## Memory Heap in JavaScript
88

99
In JavaScript, memory management is crucial for ensuring efficient and smooth performance of applications. The memory heap is a region in memory where objects, strings, and closures are stored. It is managed by the JavaScript engine's garbage collector.
1010

en/behind-scenes/runtime-environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pageNumber: 262
44
description: Understanding Runtime Environment in JavaScript.
55
---
66

7-
## Understanding Runtime Environment in JavaScript
7+
## Runtime Environment in JavaScript
88

99
The runtime environment in JavaScript is the context in which your code is executed. It includes the JavaScript engine, the call stack, the memory heap, and the APIs provided by the environment (such as the browser or Node.js).
1010

0 commit comments

Comments
 (0)