Skip to content

Commit 615f63a

Browse files
committed
JS execution and call stack
1 parent 7165d11 commit 615f63a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Notes/JSCodeExecution.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
JavaScript executes code in a structured way using the Global Execution Context and the Call Stack.
44

5-
![GEC in JS](Notes/images/JSCodeExecution.png)
6-
![Working in JS](Notes/images/Process.png)
5+
![Code Execution in JS](images/JSCodeExecution.png)
6+
![Working of Code in JS](images/Process.png)
77

88
# Call Stack in JS
99

1010
The call stack keeps track of function calls in JavaScript. It's a stack data structure that operates in a LIFO (Last In, First Out) manner.
1111

12-
![Call Stack in JS](Notes/images/callStack.png)
12+
![Call Stack in JS](images/callStack.png)

0 commit comments

Comments
 (0)