This readme will contain information on how the book's final formate should be structured. # Overview . ├── readme.md ├── **00-DRAFT-Content** (Subject to change) ├── 0-documentation │ ├── about this repo ├── 0-student_files │ ├── where readers / students should create their code. ├── 01-Reteaching-JavaScript/ │ ├── 01-History-of-JS/ │ │ └── readme.md - subsection │ │ └── code/ │ │ └── imgs/ │ │ └── slides/ │ ├── 02-Terminal-NVM/ │ │ └── readme.md - subsection │ │ └── code/ │ │ └── imgs/ │ │ └── slides/ │ ├── 03-logging-datatypes/ │ │ └── readme.md - subsection │ │ └── code/ │ │ └── imgs/ │ │ └── slides/ │ ├── 04-client-vs-server/ │ │ └── readme.md - subsection │ │ └── code/ │ │ └── imgs/ │ │ └── slides/ ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .github/ │ ├── FUNDING.yml └── LICENSE # Sections Each section should be focused on 1 or two topics at most and look something like the following: * [code/](./05-Functions/code) * [IIFE.js](./05-Functions/code/IIFE.js) * [anon.js](./05-Functions/code/anon.js) * [arrows.js](./05-Functions/code/arrows.js) * [closures.js](./05-Functions/code/closures.js) * [functions.js](./05-Functions/code/functions.js) * [imgs/](./05-Functions/imgs) * [arrow.png](./05-Functions/imgs/arrow.png) * [closures.png](./05-Functions/imgs/closures.png) * [declaration.png](./05-Functions/imgs/declaration.png) * [declarationHoisting.png](./05-Functions/imgs/declarationHoisting.png) * [slides/](./05-Functions/slides) * [01-declaration.md](./05-Functions/slides/01-declaration.md) * [.DS_Store](./05-Functions/.DS_Store) * [return.js](./05-Functions/return.js) * [return.png](./05-Functions/return.png) * [readme.md](./05-Functions/readme.md) - Your final chapter.