DEV Community

Cover image for How JavaScript Works ๐Ÿคท๐Ÿปโ€โ™€๏ธ
Suprabha
Suprabha

Posted on

How JavaScript Works ๐Ÿคท๐Ÿปโ€โ™€๏ธ

Understanding the fundamentals is priceless. So let's discuss the fundamental that how Javascript works ๐Ÿค”

How JavaScript Works? ๐Ÿคท๐Ÿปโ€โ™€

Understanding how JavaScript works makes reading and writing code easier and less frustrating and allows you to focus on the logic of your application instead of fighting with the grammar of the language.

We write code in text editor and somehow this code magically turns into 0 and 1 which tells computer to do something. ๐Ÿ˜‡

Javascript is a single threaded and interpreted language.

If I give JS file to CPU and ask to execute it in browser, It won't understand the language as in last computer only understand 0 and 1. How we communicate using JS file , so computer execute code in browser.

Here, comes Javascript Engine.

Javascript Engine ๐ŸŽฐ

how javascript engine works

By having Javascript Engine, it allows us to give Javascript file to the engine. The engine is going to understand Javascript file and tell the computers what to do to with code.

In a sense, you just created a translator so you can communicate with somebody that doesn't know your language.

There are 8 engines and they are called ECMAScript. Fast engine is v8 which is written in C++.

โ“ Who created the first JS engine โ“

Brendan Eich. โ˜บ๏ธ Before that computer only understand HTML and CSS ๐Ÿคฏ

What happens Inside The Engine?

how javascript engine works

When we give a Javascript file, first it does lexical analysis(parser) which break a code into token to identify their meaning.

These token will get formed in tree called AST(Abstract Syntax Tree).

To check it how it works. Goto link

Once tree is formed, it goes to interpreter.

Interpreter & Compiler

In programming language, there are two ways of translating into machine language, something that computer understands.

Interpreter, We translate and read the files line by line on the fly.

Compiler, It works ahead of time to create a translation of what code we have written and it compiles down to language that can be understood by our machines.

Interpreter and compiler language

In above image, We have a high level language in Javascript, Interpreter take the high level language code line by line and and spit out byte code.

Compiler will take a high level language code and spit out machine code. So, it can give it to CPU, and CPU can actually run the code.

Hence, Interpreter allows us to run the code right away and the compiler and profiler allows us to optimise the code as we are running.

Babel + TypeScript แธ†แนฎ

babel and typescript

Babel is a Javascript compiler that takes your modern Javascript code and returns browser compatible JS (older JS code).

Typescript is a superset of Javascript that compiles down to Javascript.

Both of these do exactly what compilers do: Take one language and convert into a different one!

Pros and Cons of Interpreter and compiler:

  1. Complier take little bit longer to get up and running but the code is eventually run faster .
  2. Interpreter that is really fast to get up and running but doesn't do any optimisations.

โ“ Is there anything we can get the best of both? โ“

Yes, Google came with V8 engine, which combining both interpreter and complier, known as JIT (Just In Time) complier to make the engine faster.

Using the Profiler, as the code is running through our interpreter which tells our browser what to do if the same line of code run a few times. We actually pass some of the code to compiler/JIT complier and complier takes a code and compiles it or modifies it.

Is Javascript an interpreted language โ“

Yes, when Javascript first came out you had Javascript engine such as spider monkey that interpreted Javascript to byte code which tells browser what to do. But now we also use complier to optimise the code.

Memory Heap and Call Stack ๐Ÿ“š

memory heap and call stack

Memory Heap is a place to store all information and write information. That way we have a place to allocate memory, use memory and release memory.

Call Stack need to keep track of where we are in the code.

Stack Overflow

Recursion is one of the most common ways to create a stack overflow or a lot of function nested inside each other to keep the stack growing and growing.. ๐Ÿคฏ

The error will come as:

Uncaught RangeError: Maximum call stack size exceeded

Garbage Collection โƒฅ

Javascript is garbage collected language.

It means when we created any object, and after execution if we don't need the object anymore then it's going to clean it up for us.

Javascript automatically frees up this memory that we no longer use.

โ“โ“How does garbage collection works in Javascript? โ“โ“

โ‡’ It uses mark and sweep algo.

how javascript works

Memory Leak ๐Ÿ“

Memory leak are piece of memory that the application have used in the past but its not needed any longer but has not been returned back to us to the poor free memory.

Running below snippet, we are going to run an infinite loop that keeps pushing i-1 over and over until we fill up our memory and there is nothing left for us to use, which crash our browser.

Example:

let array = [];
for(let i = 5; i > 1; i++) {
    array.push(i-1);
}
Enter fullscreen mode Exit fullscreen mode

These are few memory leak that happened:

  1. Don't have too many global variables
  2. Event listener

    You never remove the below addEventListener , when you don't need them. SO keep adding event listeners.

    var el = document.getElementById('button')
    el.addEventListener('click', onclick)
    
  3. setInterval
    It will run continuously , so we need to use clearInterval when you don't need them.

Single Thread ๐Ÿงต

console log window

Javascript is single thread language, as it has only one call stack. Call stack allows us to run a code one at a time and because of this Javascript is synchronous, so only one thing can happen at a time.

It's not only JS engine which run the code, Javascript runtime is also there which will take care of running tasks.

Javascript Runtime ๐Ÿƒ๐Ÿปโ€โ™‚๏ธ

Web browser is working in background, while the synchronous Javascript code is running and its uses Web API to communicate. So the Javascript engine knows, there is some data which needs to be done in background.

Web API comes with browser. These web API can do many things like send http request, listen to DOM event, delay execution using callback, database storage.

Example:

If you console log window you will understand what are property has been provided by browser.

console.log(window)
Enter fullscreen mode Exit fullscreen mode

console log window

Browser uses C++ languages to perform all the above operation.

These web API are called asynchronous.

So if any callback or web API call like setTimeout goes to call stack then it will not understand what to do with it, so it send the callback to web API, and web API will take care of it. Once the web API will be done with the callback than it send to callback queue and event loop will take care of it from now. Event loop will communicate with call stack and callback queue, that if call stack is empty then add the callback queue task to call stack.

Example:

console.log("1");
setTimeout(() โ‡’ {
    console.log("2")
}, 1000)
console.log("3")

// OUTPUT: 
// 1
// 3
// 2
Enter fullscreen mode Exit fullscreen mode

Lets see how the above example runs:

we added 1st console to call stack and we logged onto console and then remove that code from call stack.

Now, Added the setTimeout to call stack, which immediately think that setTimeout is web API, so call stack does not know what to do with it, so call stack will send setTimeout to web API.

Then we go to next line, and check its console log, then logged onto console and then remove that code from call stack.

Now behind web API, it is going to start the timer for 1 sec, and once the 1 sec is over its going to push the callback i.e. console.log("2"). Then console.log("2") will be pushed to callback queue, then event loop which is continuously running will check is call stack empty?

Event loop only runs when call stack is empty and entire JS file has read. So event loop is not going to put anything in call stack from callback queue, until call stack is empty.

Once it clear, Event loop will take console.log("2") and prints.

Reference ๐Ÿง

๐ŸŒŸ Twitter ๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป suprabha.me ๐ŸŒŸ Instagram

Top comments (9)

Collapse
 
akhil_reddy_01 profile image
Akhil Reddy

Hello friend!
Can you suggest any source for learning JS

Collapse
 
suprabhasupi profile image
Suprabha

My recommendation is to go for MDN docs. Or Udemy courses as well for JS advanced. Try to follow the few devs in twitter so you will be up to date of new features

Collapse
 
raddevus profile image
raddevus

JavaScript: The New Toys by T.J. Crowder is a nice new book that will help you learn JS along with the latest features.

Collapse
 
akhil_reddy_01 profile image
Akhil Reddy

Thanks

Collapse
 
immanuel5015 profile image
IMMANUEL5015

Please I want to understand that part about how the interpreter works with the profiler and the compiler.

If the interpreter is reading and executing immediately, how exactly does the profiler and the compiler help, since from my reasoning, if the profiler passes the code off to the compiler, the interpreter should have already moved on to the next line by the time the compiler is producing optimized code or will it pause untill the compiler produces optimized code? The logic of this is just not well aligned in my head. I would appreciate some clarity please.

Collapse
 
bronkan profile image
BRonKan

Amazing!! Really loved it! Love how the article is in depth and so clear.

Collapse
 
tygalive profile image
Richard Muvirimi

Great article. Just need to correct grammar so it's easily understandable

Collapse
 
suprabhasupi profile image
Suprabha

Thanks for letting me know. It would be really great of you point it out some line so I can fix it

Collapse
 
akhil_reddy_01 profile image
Akhil Reddy

Thanks bro!