From 985f9fa4fd384ac16850488846b413f1d844351e Mon Sep 17 00:00:00 2001 From: Mattias Lundberg Date: Sun, 11 Aug 2019 15:27:05 +0200 Subject: [PATCH 1/2] Add more beginner friendly call/apply/bind reading --- Week3/README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Week3/README.md b/Week3/README.md index 2c317379f..84694b8e3 100644 --- a/Week3/README.md +++ b/Week3/README.md @@ -13,17 +13,16 @@ Here are resources that we like you to read as a preparation for the third lectu - [Object-Oriented Programming & Classes](../../../../fundamentals/blob/master/fundamentals/oop_classes.md) - [What is 'this'?](../../../../fundamentals/blob/master/fundamentals/this.md) +- [Javascript call() & apply() vs bind()?](https://stackoverflow.com/questions/15455009/javascript-call-apply-vs-bind) -### `call` `apply`, `bind` +### Extra reading - [Function.prototype.call()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/call) - [Function.prototype.apply()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/apply) - [Function.prototype.bind()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind) - ## Recommended Readings [Eloquent JavaScript: Chapter 6 - The Secret Life of Objects](http://eloquentjavascript.net/06_object.html). Read up to the section of **Maps**. - -_Please go through the material and come to class prepared!_ \ No newline at end of file +_Please go through the material and come to class prepared!_ From fdcddd44bb3f938a6dc51ef01b6e32d432701753 Mon Sep 17 00:00:00 2001 From: Mattias Lundberg Date: Tue, 20 Aug 2019 08:21:45 +0200 Subject: [PATCH 2/2] Restore removed links from #3 And make them absolute so they work in all forks --- Week2/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Week2/README.md b/Week2/README.md index 98d3d122c..aebcad4e2 100644 --- a/Week2/README.md +++ b/Week2/README.md @@ -16,3 +16,8 @@ Here are resources that we like you to read as a preparation for the second lect - [Why closures are helpful with async code](http://stackoverflow.com/questions/13343340/calling-an-asynchronous-function-within-a-for-loop-in-javascript) _Please go through the material and come to class prepared!_ + +### Fundamentals + +- [Event Loop](https://github.com/foocoding/fundamentals/blob/master/fundamentals/event_loop.md) +- [Promises](https://github.com/foocoding/fundamentals/blob/master/fundamentals/promises.md)