Slide 1

Slide 1 text

HOW JAVASCRIPT WORKS INSIDE THE JAVASCRIPT RUNTIME

Slide 2

Slide 2 text

SO… what is JavaScript?

Slide 3

Slide 3 text

why does JavaScript become so popular right now?

Slide 4

Slide 4 text

Github Language Stats 2018

Slide 5

Slide 5 text

Variations

Slide 6

Slide 6 text

No content

Slide 7

Slide 7 text

No content

Slide 8

Slide 8 text

Variations (ES6)

Slide 9

Slide 9 text

Variations (TypeScript)

Slide 10

Slide 10 text

Variations (CoffeeScript)

Slide 11

Slide 11 text

No content

Slide 12

Slide 12 text

Variations (JavaScript)

Slide 13

Slide 13 text

how JavaScript works?

Slide 14

Slide 14 text

The JavaScript Engine

Slide 15

Slide 15 text

The Runtime

Slide 16

Slide 16 text

The Call Stack

Slide 17

Slide 17 text

The Call Stack Each entry in the Call Stack is called a Stack Frame.

Slide 18

Slide 18 text

The Call Stack (The Stack Trace)

Slide 19

Slide 19 text

The Call Stack (The Stack Trace) LIFO (Last In First Out)

Slide 20

Slide 20 text

The Call Stack (The Stack Trace) How About This?

Slide 21

Slide 21 text

The Call Stack (The Stack Trace)

Slide 22

Slide 22 text

Fun Fact: JavaScript is Single Thread & Synchronous

Slide 23

Slide 23 text

Concurrency & the Event Loop

Slide 24

Slide 24 text

What happens when you have function calls in the Call Stack that take a huge amount of time in order to be processed?

Slide 25

Slide 25 text

No content

Slide 26

Slide 26 text

V8 — open source, developed by Google, written in C++ Rhino — managed by the Mozilla Foundation, open source, developed entirely in Java SpiderMonkey — the first JavaScript engine, which back in the days powered Netscape Navigator, and today powers Firefox JavaScriptCore — open source, marketed as Nitro and developed by Apple for Safari KJS — KDE’s engine originally developed by Harri Porten for the KDE project’s Konqueror web browser Chakra (JScript9) — Internet Explorer Chakra (JavaScript) — Microsoft Edge Nashorn, open source as part of OpenJDK, written by Oracle Java Languages and Tool Group JerryScript — is a lightweight engine for the Internet of Things. JavaScript Engines (JavaScript Engines)

Slide 27

Slide 27 text

Inside The V8 Engine V8 used to have two compilers full-codegen — a simple and very fast compiler that produced simple and relatively slow machine code. Crankshaft — a more complex (Just-In-Time) optimizing compiler that produced highly- optimized code.

Slide 28

Slide 28 text

Event loop and the rise of Async programming

Slide 29

Slide 29 text

Building Blocks The most common block unit is the function.

Slide 30

Slide 30 text

Building Blocks A simple way of “waiting” for an asynchronous function to return its result is to use a function called callback:

Slide 31

Slide 31 text

Can i make Synchronous AJAX Request?

Slide 32

Slide 32 text

Building Blocks If you make a synchronous Ajax request, the UI of your JavaScript app will be blocked  Users won’t be able to click, enter data, navigate, or scroll.

Slide 33

Slide 33 text

Building Blocks

Slide 34

Slide 34 text

Building Blocks

Slide 35

Slide 35 text

JavaScript Runtime

Slide 36

Slide 36 text

What is Event Loop? The Event Loop has one simple job to monitor the Call Stack and the Callback Queue. If the Call Stack is empty, it will take the first event from the queue and will push it to the Call Stack, which effectively runs it.

Slide 37

Slide 37 text

How This Block of Codes Will Be Executed?

Slide 38

Slide 38 text

No content

Slide 39

Slide 39 text

How setTimeout works? It’s important to note that setTimeout(…) doesn’t automatically put your callback on the event loop queue. It sets up a timer. When the timer expires, the environment places your callback into the event loop, so that some future tick will pick it up and execute it.

Slide 40

Slide 40 text

How setTimeout works? That doesn’t mean that myCallback will be executed in 1,000 ms but rather that, in 1,000 ms, myCallback will be added to the queue. The queue, however, might have other events that have been added earlier — your callback will have to wait.

Slide 41

Slide 41 text

Callbacks

Slide 42

Slide 42 text

Nested Callbacks? This kind of code is often called a callback hell.

Slide 43

Slide 43 text

Promise

Slide 44

Slide 44 text

Promise

Slide 45

Slide 45 text

ES8 Async/Await

Slide 46

Slide 46 text

Async/Await

Slide 47

Slide 47 text

how to write optimized JavaScript?

Slide 48

Slide 48 text

Clean Code VS

Slide 49

Slide 49 text

Error Handling VS

Slide 50

Slide 50 text

Conditional VS

Slide 51

Slide 51 text

thank you :) let’s keep in touch @riskteria rizky@ottencoffee.co.id