diff --git a/chapter-01/readme.md b/chapter-01/readme.md index e987681f..3d22eb2a 100644 --- a/chapter-01/readme.md +++ b/chapter-01/readme.md @@ -53,9 +53,8 @@ optionally install one of these version mangers: Installing the React Tools -------------------------------- -Next, there are some Chrome developer extensions or Firefox add-ons that you will need to install in order to debug React: +Next, install the React developer tools: -* Detector ([Chrome](https://chrome.google.com/webstore/detail/react-detector/jaaklebbenondhkanegppccanebkdjlh?hl=en-US)) * Development Tools ([Chrome](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en) | [Firefox](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/)) @@ -64,8 +63,23 @@ Working with JSBin This repository links to samples hosted on JSBin so that you can immediately begin changing each sample and checking output to see how each sample has changed. -Here is a Hello World sample that JSBin has assigned the identifier __gosabo__. There are 3 available versions of this -sample in JSBin under the same identifier. +Here is a Hello World sample that JSBin has assigned the identifier __gosabo__. There are 3 available versions of this sample in JSBin under the same identifier. + +Note: All JSBin links throughout this repository use React 15. To update, change the script tag CDN links to version 16. + +Change + +```html + + +``` + +To + +```html + + +``` ##### A preview of the latest version in a sample: [http://output.jsbin.com/gosabo](http://output.jsbin.com/gosabo) @@ -77,7 +91,7 @@ sample in JSBin under the same identifier. [http://output.jsbin.com/gosabo/quite](http://output.jsbin.com/gosabo/quiet) ##### Version 1 of the sample as output: [http://output.jsbin.com/gosabo/1](http://output.jsbin.com/gosabo/1) -##### Version 1 of te sample in the editor: +##### Version 1 of the sample in the editor: [http://output.jsbin.com/gosabo/1/edit](http://output.jsbin.com/gosabo/1/edit) ##### Version 2 of the sample as output: [http://output.jsbin.com/gosabo/2](http://output.jsbin.com/gosabo/2) @@ -89,9 +103,9 @@ CDN's for JavaScript libraries Ultimately, we will be working with webpack and npms, but to get running quickly, here are some CDN links that can be included in JSBin with this syntax: `` -* [React](https://unpkg.com/react@15.4.2/dist/react.js) -* [React DOM](https://unpkg.com/react-dom@15.4.2/dist/react-dom.js) -* [Babel Inline Transpiller](https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.js) +* [React](https://unpkg.com/react@16/umd/react.development.js) +* [React DOM](https://unpkg.com/react-dom@16/umd/react-dom.development.js) +* [Babel Inline Transpiler](https://unpkg.com/babel-standalone@6.15.0/babel.min.js) * [fetch](https://cdnjs.cloudflare.com/ajax/libs/fetch/1.0.0/fetch.min.js) * [Redux](https://cdnjs.cloudflare.com/ajax/libs/redux/3.6.0/redux.min.js) * [React Router Source](https://cdnjs.cloudflare.com/ajax/libs/react-router/4.0.0/react-router.min.js) diff --git a/chapter-02/01-declaring-variables/01-const.html b/chapter-02/01-declaring-variables/01-const.html new file mode 100644 index 00000000..890efc5b --- /dev/null +++ b/chapter-02/01-declaring-variables/01-const.html @@ -0,0 +1,22 @@ + + +
+ + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/02-const.html b/chapter-02/01-declaring-variables/02-const.html new file mode 100644 index 00000000..a632e6cd --- /dev/null +++ b/chapter-02/01-declaring-variables/02-const.html @@ -0,0 +1,21 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/03-let.html b/chapter-02/01-declaring-variables/03-let.html new file mode 100644 index 00000000..48c4f071 --- /dev/null +++ b/chapter-02/01-declaring-variables/03-let.html @@ -0,0 +1,27 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/04-let.html b/chapter-02/01-declaring-variables/04-let.html new file mode 100644 index 00000000..c035c59d --- /dev/null +++ b/chapter-02/01-declaring-variables/04-let.html @@ -0,0 +1,27 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/05-let.html b/chapter-02/01-declaring-variables/05-let.html new file mode 100644 index 00000000..27ac9141 --- /dev/null +++ b/chapter-02/01-declaring-variables/05-let.html @@ -0,0 +1,41 @@ + + + + + + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/08-template-strings.html b/chapter-02/01-declaring-variables/08-template-strings.html new file mode 100644 index 00000000..50424145 --- /dev/null +++ b/chapter-02/01-declaring-variables/08-template-strings.html @@ -0,0 +1,24 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/09-template-strings.html b/chapter-02/01-declaring-variables/09-template-strings.html new file mode 100644 index 00000000..01d9f22d --- /dev/null +++ b/chapter-02/01-declaring-variables/09-template-strings.html @@ -0,0 +1,46 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/01-declaring-variables/10-template-strings.html b/chapter-02/01-declaring-variables/10-template-strings.html new file mode 100644 index 00000000..d5d8e999 --- /dev/null +++ b/chapter-02/01-declaring-variables/10-template-strings.html @@ -0,0 +1,41 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/02-es6-functions/01-default-parameters.html b/chapter-02/02-es6-functions/01-default-parameters.html new file mode 100644 index 00000000..256e1c1c --- /dev/null +++ b/chapter-02/02-es6-functions/01-default-parameters.html @@ -0,0 +1,22 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/02-es6-functions/02-default-parameters.html b/chapter-02/02-es6-functions/02-default-parameters.html new file mode 100644 index 00000000..9f2f31c6 --- /dev/null +++ b/chapter-02/02-es6-functions/02-default-parameters.html @@ -0,0 +1,30 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/01-arrows.html b/chapter-02/03-arrow-functions/01-arrows.html new file mode 100644 index 00000000..34af1b79 --- /dev/null +++ b/chapter-02/03-arrow-functions/01-arrows.html @@ -0,0 +1,25 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/02-arrows.html b/chapter-02/03-arrow-functions/02-arrows.html new file mode 100644 index 00000000..bd3423ff --- /dev/null +++ b/chapter-02/03-arrow-functions/02-arrows.html @@ -0,0 +1,23 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/03-arrows.html b/chapter-02/03-arrow-functions/03-arrows.html new file mode 100644 index 00000000..b1412fce --- /dev/null +++ b/chapter-02/03-arrow-functions/03-arrows.html @@ -0,0 +1,25 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/04-arrows.html b/chapter-02/03-arrow-functions/04-arrows.html new file mode 100644 index 00000000..b6d5da84 --- /dev/null +++ b/chapter-02/03-arrow-functions/04-arrows.html @@ -0,0 +1,23 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/05-arrows.html b/chapter-02/03-arrow-functions/05-arrows.html new file mode 100644 index 00000000..da569916 --- /dev/null +++ b/chapter-02/03-arrow-functions/05-arrows.html @@ -0,0 +1,34 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/06-arrows.html b/chapter-02/03-arrow-functions/06-arrows.html new file mode 100644 index 00000000..a2326991 --- /dev/null +++ b/chapter-02/03-arrow-functions/06-arrows.html @@ -0,0 +1,33 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/07-arrows.html b/chapter-02/03-arrow-functions/07-arrows.html new file mode 100644 index 00000000..425d0836 --- /dev/null +++ b/chapter-02/03-arrow-functions/07-arrows.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/08-arrows.html b/chapter-02/03-arrow-functions/08-arrows.html new file mode 100644 index 00000000..16b138c5 --- /dev/null +++ b/chapter-02/03-arrow-functions/08-arrows.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/09-arrows.html b/chapter-02/03-arrow-functions/09-arrows.html new file mode 100644 index 00000000..19d63274 --- /dev/null +++ b/chapter-02/03-arrow-functions/09-arrows.html @@ -0,0 +1,32 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/10-arrows.html b/chapter-02/03-arrow-functions/10-arrows.html new file mode 100644 index 00000000..55930a34 --- /dev/null +++ b/chapter-02/03-arrow-functions/10-arrows.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/03-arrow-functions/11-arrows.html b/chapter-02/03-arrow-functions/11-arrows.html new file mode 100644 index 00000000..21c780a9 --- /dev/null +++ b/chapter-02/03-arrow-functions/11-arrows.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/01-destructuring.html b/chapter-02/04-objects-and-arrays/01-destructuring.html new file mode 100644 index 00000000..20faa849 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/01-destructuring.html @@ -0,0 +1,35 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/02-destructuring.html b/chapter-02/04-objects-and-arrays/02-destructuring.html new file mode 100644 index 00000000..d423a863 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/02-destructuring.html @@ -0,0 +1,29 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/03-destructuring.html b/chapter-02/04-objects-and-arrays/03-destructuring.html new file mode 100644 index 00000000..74502bc7 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/03-destructuring.html @@ -0,0 +1,28 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/04-destructuring.html b/chapter-02/04-objects-and-arrays/04-destructuring.html new file mode 100644 index 00000000..a203e608 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/04-destructuring.html @@ -0,0 +1,22 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/05-destructuring.html b/chapter-02/04-objects-and-arrays/05-destructuring.html new file mode 100644 index 00000000..882988b9 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/05-destructuring.html @@ -0,0 +1,22 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/06-object-literal-enhancement.html b/chapter-02/04-objects-and-arrays/06-object-literal-enhancement.html new file mode 100644 index 00000000..218aa128 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/06-object-literal-enhancement.html @@ -0,0 +1,25 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/07-object-literal-enhancement.html b/chapter-02/04-objects-and-arrays/07-object-literal-enhancement.html new file mode 100644 index 00000000..78150b03 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/07-object-literal-enhancement.html @@ -0,0 +1,28 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/08-object-literal-enhancement.html b/chapter-02/04-objects-and-arrays/08-object-literal-enhancement.html new file mode 100644 index 00000000..28a491d5 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/08-object-literal-enhancement.html @@ -0,0 +1,38 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/09-object-literal-enhancement.html b/chapter-02/04-objects-and-arrays/09-object-literal-enhancement.html new file mode 100644 index 00000000..4ab2a3c3 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/09-object-literal-enhancement.html @@ -0,0 +1,38 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/10-spread-operator.html b/chapter-02/04-objects-and-arrays/10-spread-operator.html new file mode 100644 index 00000000..95869107 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/10-spread-operator.html @@ -0,0 +1,24 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/11-spread-operator.html b/chapter-02/04-objects-and-arrays/11-spread-operator.html new file mode 100644 index 00000000..fc9bab05 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/11-spread-operator.html @@ -0,0 +1,24 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/12-spread-operator.html b/chapter-02/04-objects-and-arrays/12-spread-operator.html new file mode 100644 index 00000000..cce7f90b --- /dev/null +++ b/chapter-02/04-objects-and-arrays/12-spread-operator.html @@ -0,0 +1,24 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/13-spread-operator.html b/chapter-02/04-objects-and-arrays/13-spread-operator.html new file mode 100644 index 00000000..4cf451b5 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/13-spread-operator.html @@ -0,0 +1,24 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/14-spread-operator.html b/chapter-02/04-objects-and-arrays/14-spread-operator.html new file mode 100644 index 00000000..52d7594a --- /dev/null +++ b/chapter-02/04-objects-and-arrays/14-spread-operator.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/04-objects-and-arrays/15-spread-operator.html b/chapter-02/04-objects-and-arrays/15-spread-operator.html new file mode 100644 index 00000000..acfac0f8 --- /dev/null +++ b/chapter-02/04-objects-and-arrays/15-spread-operator.html @@ -0,0 +1,32 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/05-promises/01-promises.html b/chapter-02/05-promises/01-promises.html new file mode 100644 index 00000000..e6d987e8 --- /dev/null +++ b/chapter-02/05-promises/01-promises.html @@ -0,0 +1,34 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/05-promises/02-promises.html b/chapter-02/05-promises/02-promises.html new file mode 100644 index 00000000..1fb6e852 --- /dev/null +++ b/chapter-02/05-promises/02-promises.html @@ -0,0 +1,21 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/06-es6-class-syntax/01-classes.html b/chapter-02/06-es6-class-syntax/01-classes.html new file mode 100644 index 00000000..b522f66a --- /dev/null +++ b/chapter-02/06-es6-class-syntax/01-classes.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/06-es6-class-syntax/02-classes.html b/chapter-02/06-es6-class-syntax/02-classes.html new file mode 100644 index 00000000..7c7f1eaf --- /dev/null +++ b/chapter-02/06-es6-class-syntax/02-classes.html @@ -0,0 +1,35 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/06-es6-class-syntax/03-classes.html b/chapter-02/06-es6-class-syntax/03-classes.html new file mode 100644 index 00000000..437ae908 --- /dev/null +++ b/chapter-02/06-es6-class-syntax/03-classes.html @@ -0,0 +1,50 @@ + + + + + +Open the console
+ + + diff --git a/chapter-02/babel-inline-transpiler.html b/chapter-02/babel-inline-transpiler.html index 3864343f..8c5a60d8 100644 --- a/chapter-02/babel-inline-transpiler.html +++ b/chapter-02/babel-inline-transpiler.html @@ -4,7 +4,7 @@Open the console
+ + + diff --git a/chapter-03/01-functional-javascript/02-functional.html b/chapter-03/01-functional-javascript/02-functional.html new file mode 100644 index 00000000..45665bd2 --- /dev/null +++ b/chapter-03/01-functional-javascript/02-functional.html @@ -0,0 +1,20 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/01-functional-javascript/03-functional.html b/chapter-03/01-functional-javascript/03-functional.html new file mode 100644 index 00000000..6caf6c53 --- /dev/null +++ b/chapter-03/01-functional-javascript/03-functional.html @@ -0,0 +1,25 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/01-functional-javascript/04-functional.html b/chapter-03/01-functional-javascript/04-functional.html new file mode 100644 index 00000000..efb438b7 --- /dev/null +++ b/chapter-03/01-functional-javascript/04-functional.html @@ -0,0 +1,26 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/01-functional-javascript/05-functional.html b/chapter-03/01-functional-javascript/05-functional.html new file mode 100644 index 00000000..ee7516c3 --- /dev/null +++ b/chapter-03/01-functional-javascript/05-functional.html @@ -0,0 +1,22 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/01-functional-javascript/06-functional.html b/chapter-03/01-functional-javascript/06-functional.html new file mode 100644 index 00000000..2d34e2d3 --- /dev/null +++ b/chapter-03/01-functional-javascript/06-functional.html @@ -0,0 +1,28 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/01-functional-javascript/07-functional.html b/chapter-03/01-functional-javascript/07-functional.html new file mode 100644 index 00000000..c5dbe176 --- /dev/null +++ b/chapter-03/01-functional-javascript/07-functional.html @@ -0,0 +1,23 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/02-imperative-vs-declarative/01-imperative-declarative.html b/chapter-03/02-imperative-vs-declarative/01-imperative-declarative.html new file mode 100644 index 00000000..227a436d --- /dev/null +++ b/chapter-03/02-imperative-vs-declarative/01-imperative-declarative.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/02-imperative-vs-declarative/02-imperative-declarative.html b/chapter-03/02-imperative-vs-declarative/02-imperative-declarative.html new file mode 100644 index 00000000..3179b590 --- /dev/null +++ b/chapter-03/02-imperative-vs-declarative/02-imperative-declarative.html @@ -0,0 +1,21 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/populate-united-states.html b/chapter-03/03-populate-the-us/populate-united-states.html similarity index 100% rename from chapter-03/populate-united-states.html rename to chapter-03/03-populate-the-us/populate-united-states.html diff --git a/chapter-03/populate-united-states.js b/chapter-03/03-populate-the-us/populate-united-states.js similarity index 100% rename from chapter-03/populate-united-states.js rename to chapter-03/03-populate-the-us/populate-united-states.js diff --git a/chapter-03/04-immutability/01-immutability.html b/chapter-03/04-immutability/01-immutability.html new file mode 100644 index 00000000..7f0af097 --- /dev/null +++ b/chapter-03/04-immutability/01-immutability.html @@ -0,0 +1,34 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/04-immutability/02-immutability.html b/chapter-03/04-immutability/02-immutability.html new file mode 100644 index 00000000..32fd3e74 --- /dev/null +++ b/chapter-03/04-immutability/02-immutability.html @@ -0,0 +1,34 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/04-immutability/03-immutability.html b/chapter-03/04-immutability/03-immutability.html new file mode 100644 index 00000000..ac17c46e --- /dev/null +++ b/chapter-03/04-immutability/03-immutability.html @@ -0,0 +1,35 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/04-immutability/04-immutability.html b/chapter-03/04-immutability/04-immutability.html new file mode 100644 index 00000000..ef592595 --- /dev/null +++ b/chapter-03/04-immutability/04-immutability.html @@ -0,0 +1,34 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/04-immutability/05-immutability.html b/chapter-03/04-immutability/05-immutability.html new file mode 100644 index 00000000..6eafdd85 --- /dev/null +++ b/chapter-03/04-immutability/05-immutability.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/04-immutability/06-immutability.html b/chapter-03/04-immutability/06-immutability.html new file mode 100644 index 00000000..11207301 --- /dev/null +++ b/chapter-03/04-immutability/06-immutability.html @@ -0,0 +1,31 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/05-pure-functions/01-pure-functions.html b/chapter-03/05-pure-functions/01-pure-functions.html new file mode 100644 index 00000000..b8d4dbdf --- /dev/null +++ b/chapter-03/05-pure-functions/01-pure-functions.html @@ -0,0 +1,36 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/05-pure-functions/02-pure-functions.html b/chapter-03/05-pure-functions/02-pure-functions.html new file mode 100644 index 00000000..15d67d9f --- /dev/null +++ b/chapter-03/05-pure-functions/02-pure-functions.html @@ -0,0 +1,35 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/05-pure-functions/03-pure-functions.html b/chapter-03/05-pure-functions/03-pure-functions.html new file mode 100644 index 00000000..5c8454c8 --- /dev/null +++ b/chapter-03/05-pure-functions/03-pure-functions.html @@ -0,0 +1,37 @@ + + + + + +Open the console
+ + + diff --git a/chapter-03/05-pure-functions/04-pure-functions.html b/chapter-03/05-pure-functions/04-pure-functions.html new file mode 100644 index 00000000..c20a665e --- /dev/null +++ b/chapter-03/05-pure-functions/04-pure-functions.html @@ -0,0 +1,23 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/06-transforming-data/02-data.html b/chapter-03/06-transforming-data/02-data.html new file mode 100644 index 00000000..6833a911 --- /dev/null +++ b/chapter-03/06-transforming-data/02-data.html @@ -0,0 +1,26 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/06-transforming-data/03-data.html b/chapter-03/06-transforming-data/03-data.html new file mode 100644 index 00000000..4de5e6a6 --- /dev/null +++ b/chapter-03/06-transforming-data/03-data.html @@ -0,0 +1,28 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/06-transforming-data/04-data.html b/chapter-03/06-transforming-data/04-data.html new file mode 100644 index 00000000..7bc0f40c --- /dev/null +++ b/chapter-03/06-transforming-data/04-data.html @@ -0,0 +1,27 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/06-transforming-data/05-data.html b/chapter-03/06-transforming-data/05-data.html new file mode 100644 index 00000000..a4807d58 --- /dev/null +++ b/chapter-03/06-transforming-data/05-data.html @@ -0,0 +1,26 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/06-transforming-data/06-data.html b/chapter-03/06-transforming-data/06-data.html new file mode 100644 index 00000000..b17dcd27 --- /dev/null +++ b/chapter-03/06-transforming-data/06-data.html @@ -0,0 +1,40 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/06-transforming-data/07-data.html b/chapter-03/06-transforming-data/07-data.html new file mode 100644 index 00000000..e90b3c19 --- /dev/null +++ b/chapter-03/06-transforming-data/07-data.html @@ -0,0 +1,36 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/06-transforming-data/08-data.html b/chapter-03/06-transforming-data/08-data.html new file mode 100644 index 00000000..7d75c2fe --- /dev/null +++ b/chapter-03/06-transforming-data/08-data.html @@ -0,0 +1,31 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/06-transforming-data/09-data.html b/chapter-03/06-transforming-data/09-data.html new file mode 100644 index 00000000..7edff597 --- /dev/null +++ b/chapter-03/06-transforming-data/09-data.html @@ -0,0 +1,29 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/06-transforming-data/10-data.html b/chapter-03/06-transforming-data/10-data.html new file mode 100644 index 00000000..8f0cd0be --- /dev/null +++ b/chapter-03/06-transforming-data/10-data.html @@ -0,0 +1,27 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/06-transforming-data/11-data.html b/chapter-03/06-transforming-data/11-data.html new file mode 100644 index 00000000..ac3e44d9 --- /dev/null +++ b/chapter-03/06-transforming-data/11-data.html @@ -0,0 +1,49 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/06-transforming-data/12-data.html b/chapter-03/06-transforming-data/12-data.html new file mode 100644 index 00000000..f0ca89e9 --- /dev/null +++ b/chapter-03/06-transforming-data/12-data.html @@ -0,0 +1,28 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/07-higher-order-functions/01-higher-order-fns.html b/chapter-03/07-higher-order-functions/01-higher-order-fns.html new file mode 100644 index 00000000..d34bd054 --- /dev/null +++ b/chapter-03/07-higher-order-functions/01-higher-order-fns.html @@ -0,0 +1,28 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/07-higher-order-functions/02-higher-order-fns.html b/chapter-03/07-higher-order-functions/02-higher-order-fns.html new file mode 100644 index 00000000..e80eb3b2 --- /dev/null +++ b/chapter-03/07-higher-order-functions/02-higher-order-fns.html @@ -0,0 +1,40 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/08-recursion/01-recursion.html b/chapter-03/08-recursion/01-recursion.html new file mode 100644 index 00000000..3b20b3e3 --- /dev/null +++ b/chapter-03/08-recursion/01-recursion.html @@ -0,0 +1,23 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/08-recursion/02-recursion.html b/chapter-03/08-recursion/02-recursion.html new file mode 100644 index 00000000..539d5d9e --- /dev/null +++ b/chapter-03/08-recursion/02-recursion.html @@ -0,0 +1,26 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/08-recursion/03-recursion.html b/chapter-03/08-recursion/03-recursion.html new file mode 100644 index 00000000..a8d64439 --- /dev/null +++ b/chapter-03/08-recursion/03-recursion.html @@ -0,0 +1,40 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/09-composition/01-composition.html b/chapter-03/09-composition/01-composition.html new file mode 100644 index 00000000..bcafbd33 --- /dev/null +++ b/chapter-03/09-composition/01-composition.html @@ -0,0 +1,24 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/09-composition/02-composition.html b/chapter-03/09-composition/02-composition.html new file mode 100644 index 00000000..d2d363ae --- /dev/null +++ b/chapter-03/09-composition/02-composition.html @@ -0,0 +1,53 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/09-composition/03-composition.html b/chapter-03/09-composition/03-composition.html new file mode 100644 index 00000000..90bad192 --- /dev/null +++ b/chapter-03/09-composition/03-composition.html @@ -0,0 +1,58 @@ + + + + + +Open the Console
+ + + diff --git a/chapter-03/imperative-clock.html b/chapter-03/09-composition/04-imperative-clock.html similarity index 83% rename from chapter-03/imperative-clock.html rename to chapter-03/09-composition/04-imperative-clock.html index 48ab7789..b2e8a6fd 100644 --- a/chapter-03/imperative-clock.html +++ b/chapter-03/09-composition/04-imperative-clock.html @@ -8,6 +8,6 @@Open the console to check the time.
- + - \ No newline at end of file +