├── .gitignore
├── 01_basics.md
├── 02_functions.md
├── 03_bits.md
├── 04_dom.md
├── 05_events.md
├── 06_SeriousPractice.md
├── 07_LogicAndFlowControl.md
├── 08_DataTypes.md
├── 09_GettingLoopy.md
├── 10_HarderPracticeExercises.md
├── 11_Prototype.md
├── 12_AdvancedFlowControl.md
├── 13_AjaxAndFetchingData.md
├── 14_ESModulesAndStructuringLargerApps.md
├── img
├── ModulesStructure.png
├── ObkectKeysValuesEntries.png
├── ajaxData.png
├── ajaxFetch.png
├── arrayFrom.png
├── bind.png
├── bind2.png
├── bubblingCapture.png
├── call,apply.png
├── callbackQueue.png
├── coercion.png
├── eventLoopCallbackHell.png
├── exportDefault.png
├── function-definition.jpg
├── importDefault.png
├── namedExport.png
├── namedImport.png
├── newKeyword.png
├── prototype.png
├── reduceOrderTotals.png
├── renameImports.png
├── thisKeyword.png
└── truthyFalsy.png
├── readme.md
└── tableOfContent.md
/.gitignore:
--------------------------------------------------------------------------------
1 | #Files:
2 | .DS_store
--------------------------------------------------------------------------------
/01_basics.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | # **Module #1 - The Basics**
4 |
5 | ---
6 |
7 |
8 |
9 | ## **LOADING AND RUNNING JAVASCRIPT**
10 |
11 | add `
17 |