Skip to content
This repository has been archived by the owner on Jun 25, 2020. It is now read-only.

Latest commit

 

History

History
63 lines (40 loc) · 1.95 KB

day-4.md

File metadata and controls

63 lines (40 loc) · 1.95 KB

Day 4 - Concepts

The overwhelming majority of JavaScript users are people

@horse_js

Table of Contents

Slides

Topics

Scope

Read the except about binding and scope in third chapter of the Eloquent JavaScript book.

  1. Eloquent JavaScript - Binding and Scope (book)

Read chapter 4 from You Don't Know JS about Block Scope.

  1. You Don't Know JS - Block scope (book)

(Optional) Watch Scope in JavaScript from HTTP203

Scope in JavaScript - HTTP 203

Hoisting

Read about hosting on the MDN developer documentation.

  1. Mozilla Developer Network - Hoisting (article)

Closures

Watch this video from Fun Fun Function about closures.

  1. Fun Fun Function - Closures (video)

(Optional) Read chapter five from You Don't Know JS about Closures.

You Don't Know JS - Closures

Exercises