codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

JS Demystified 04 — Execution Context

Misa Ogura
codeburst
Published in
7 min readAug 24, 2017

Intro

Execution Context ≠ Scope

Execution context ≠ scope

What is Execution Context

Memory Creation Phase

Scope

Scope chain

Every execution context has a reference to its outer scopes (if any) all the way up to the global scope.

Value of “this”

function call and “this”
Method call and “this”

Leading Parent Object

“this” in nested function

“this” and “self”

bind(), call(), apply()

bind, call, and apply methods
var newShowGreet = showGreet.bind(casualGreet)
newShowGreet()
// Hey!

Execution Stack

Wrap-up

Published in codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Written by Misa Ogura

Senior Machine Learning Engineer @Healx | Creator of github.com/MisaOgura/flashtorch | Published Scientist | Co-founder of @womendrivendev

Responses (6)

Write a response