From 6383fff5c170c97e377a6c215ce16bbbbec0be32 Mon Sep 17 00:00:00 2001 From: Exarchiasghost Date: Sat, 9 Jul 2016 16:32:31 +0200 Subject: [PATCH] small improvements to all READMEs I did improvements to all of the READMEs but nothing major. I didn't change any text you wrote in the descriptions, I worked around your descriptions with the usual improvements. --- Basic_Concepts/Callback/README.md | 19 +++++++++++-- Basic_Concepts/Closures/README.md | 16 ++++++++++- Basic_Concepts/Equality/README.md | 18 +++++++++++++ Basic_Concepts/Objects/README.md | 26 ++++++++++++++++++ Basic_Concepts/Promise/README.md | 20 +++++++++++++- Basic_Concepts/Prototype/README.md | 27 +++++++++++++++++-- Basic_Concepts/Scope/README.md | 26 ++++++++++++++++++ Data_Structures/Arrays/Iterators/README.md | 2 +- .../Arrays/New_ES6_Features_1/README.md | 2 +- .../Arrays/New_ES6_Features_2/README.md | 2 +- Data_Structures/Arrays/Searching/README.md | 2 +- Data_Structures/Arrays/Sorting/README.md | 2 +- Data_Structures/Graphs/README.md | 17 +++++++++++- Data_Structures/Hash_Table/README.md | 17 +++++++++++- ES6/Arrow_Functions/README.md | 27 +++++++++++++++++-- ES6/Classes/README.md | 20 +++++++++++++- ES6/Constants/README.md | 23 ++++++++++++++-- ES6/Generators/README.md | 21 ++++++++++++++- ES6/Inheritance/README.md | 27 +++++++++++++++++-- ES6/Let/README.md | 19 ++++++++++++- ES6/Spread_Operator/README.md | 20 +++++++++++++- ES6/Template_Literals/README.md | 20 +++++++++++++- 22 files changed, 349 insertions(+), 24 deletions(-) create mode 100644 Basic_Concepts/Equality/README.md create mode 100644 Basic_Concepts/Objects/README.md create mode 100644 Basic_Concepts/Scope/README.md diff --git a/Basic_Concepts/Callback/README.md b/Basic_Concepts/Callback/README.md index e57ee17..ed94aa1 100644 --- a/Basic_Concepts/Callback/README.md +++ b/Basic_Concepts/Callback/README.md @@ -1,4 +1,19 @@ +![](http://i.imgur.com/BgUMUGU.png) + # Callback - + A callback is a function that is called after another function is done executing. -Good for when you are making API calls, and want function to run only after data is retrieved from server. +Good for when you are making API calls, and want function to run only after data is retrieved from server. + + +# Course Documentation + +(this for me to fill up with every element that you use in lessons. syntax explaination and links for more) + +## Element to explain + +(for example console.log) + +-Links + -Wikipedia + -anotherlink,com \ No newline at end of file diff --git a/Basic_Concepts/Closures/README.md b/Basic_Concepts/Closures/README.md index 9170b74..de2afa0 100644 --- a/Basic_Concepts/Closures/README.md +++ b/Basic_Concepts/Closures/README.md @@ -1,4 +1,18 @@ +![](http://i.imgur.com/BgUMUGU.png) + ## Closures Closures are functions that refer to independent (free) variables (variables that are used locally, but defined in an -enclosing scope). In other words, these functions 'remember' the environment in which they were created. +enclosing scope). In other words, these functions 'remember' the environment in which they were created. + +# Course Documentation + +(this for me to fill up with every element that you use in lessons. syntax explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com \ No newline at end of file diff --git a/Basic_Concepts/Equality/README.md b/Basic_Concepts/Equality/README.md new file mode 100644 index 0000000..5cb1f6d --- /dev/null +++ b/Basic_Concepts/Equality/README.md @@ -0,0 +1,18 @@ +![](http://i.imgur.com/BgUMUGU.png) + +# Equality + +Equality description + + +# Course Documentation + +(this for me to fill up with every element that you use in lessons. syntax explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com \ No newline at end of file diff --git a/Basic_Concepts/Objects/README.md b/Basic_Concepts/Objects/README.md new file mode 100644 index 0000000..9548500 --- /dev/null +++ b/Basic_Concepts/Objects/README.md @@ -0,0 +1,26 @@ +![](http://i.imgur.com/BgUMUGU.png) + +# Objects + +This MD file serves as example/template. + +It will be filled up soon. + +(for Bucky to fill up) + + +# Course Documentation + +(this for me to fill up with every element + +that you use in lessons. syntax + +explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com \ No newline at end of file diff --git a/Basic_Concepts/Promise/README.md b/Basic_Concepts/Promise/README.md index 40cad00..b85efc0 100644 --- a/Basic_Concepts/Promise/README.md +++ b/Basic_Concepts/Promise/README.md @@ -1,3 +1,21 @@ +![](http://i.imgur.com/BgUMUGU.png) + # Promise -A Promise represents an operation that hasn't completed yet, but is expected in the future. +A Promise represents an operation that hasn't completed yet, but is expected in the future. + +# Course Documentation + +(this for me to fill up with every element + +that you use in lessons. syntax + +explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com \ No newline at end of file diff --git a/Basic_Concepts/Prototype/README.md b/Basic_Concepts/Prototype/README.md index d08aae5..423b6b8 100644 --- a/Basic_Concepts/Prototype/README.md +++ b/Basic_Concepts/Prototype/README.md @@ -1,3 +1,26 @@ -# Title +![](http://i.imgur.com/BgUMUGU.png) + +# Prototype + +This MD file serves as example/template. -Description +It will be filled up soon. + +(for Bucky to fill up) + + +# Course Documentation + +(this for me to fill up with every element + +that you use in lessons. syntax + +explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com \ No newline at end of file diff --git a/Basic_Concepts/Scope/README.md b/Basic_Concepts/Scope/README.md new file mode 100644 index 0000000..bd314ba --- /dev/null +++ b/Basic_Concepts/Scope/README.md @@ -0,0 +1,26 @@ +![](http://i.imgur.com/BgUMUGU.png) + +# Scope + +This MD file serves as example/template. + +It will be filled up soon. + +(for Bucky to fill up) + + +# Course Documentation + +(this for me to fill up with every element + +that you use in lessons. syntax + +explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com \ No newline at end of file diff --git a/Data_Structures/Arrays/Iterators/README.md b/Data_Structures/Arrays/Iterators/README.md index f85f6ae..dd3ac2c 100644 --- a/Data_Structures/Arrays/Iterators/README.md +++ b/Data_Structures/Arrays/Iterators/README.md @@ -1,6 +1,6 @@ ![](http://i.imgur.com/BgUMUGU.png) -# Course description, (maybe title of the lesson instead of course description.) +# Iterators This MD file serves as example/template. It will be filled up soon. (for Bucky to fill up) diff --git a/Data_Structures/Arrays/New_ES6_Features_1/README.md b/Data_Structures/Arrays/New_ES6_Features_1/README.md index f85f6ae..9039a21 100644 --- a/Data_Structures/Arrays/New_ES6_Features_1/README.md +++ b/Data_Structures/Arrays/New_ES6_Features_1/README.md @@ -1,6 +1,6 @@ ![](http://i.imgur.com/BgUMUGU.png) -# Course description, (maybe title of the lesson instead of course description.) +# New ES6 features part 1 This MD file serves as example/template. It will be filled up soon. (for Bucky to fill up) diff --git a/Data_Structures/Arrays/New_ES6_Features_2/README.md b/Data_Structures/Arrays/New_ES6_Features_2/README.md index f85f6ae..c0d84c4 100644 --- a/Data_Structures/Arrays/New_ES6_Features_2/README.md +++ b/Data_Structures/Arrays/New_ES6_Features_2/README.md @@ -1,6 +1,6 @@ ![](http://i.imgur.com/BgUMUGU.png) -# Course description, (maybe title of the lesson instead of course description.) +# New ES6 features part 2 This MD file serves as example/template. It will be filled up soon. (for Bucky to fill up) diff --git a/Data_Structures/Arrays/Searching/README.md b/Data_Structures/Arrays/Searching/README.md index f85f6ae..0c1c70c 100644 --- a/Data_Structures/Arrays/Searching/README.md +++ b/Data_Structures/Arrays/Searching/README.md @@ -1,6 +1,6 @@ ![](http://i.imgur.com/BgUMUGU.png) -# Course description, (maybe title of the lesson instead of course description.) +# Searching This MD file serves as example/template. It will be filled up soon. (for Bucky to fill up) diff --git a/Data_Structures/Arrays/Sorting/README.md b/Data_Structures/Arrays/Sorting/README.md index f85f6ae..28fcf85 100644 --- a/Data_Structures/Arrays/Sorting/README.md +++ b/Data_Structures/Arrays/Sorting/README.md @@ -1,6 +1,6 @@ ![](http://i.imgur.com/BgUMUGU.png) -# Course description, (maybe title of the lesson instead of course description.) +# Sorting This MD file serves as example/template. It will be filled up soon. (for Bucky to fill up) diff --git a/Data_Structures/Graphs/README.md b/Data_Structures/Graphs/README.md index 6311c90..4417a91 100644 --- a/Data_Structures/Graphs/README.md +++ b/Data_Structures/Graphs/README.md @@ -1,3 +1,18 @@ +![](http://i.imgur.com/BgUMUGU.png) + # Graphs +This MD file serves as example/template. It will be filled up soon. + +(for Bucky to fill up) + +# Course Documentation + +(this for me to fill up with every element that you use in lessons. syntax explaination and links for more) + +## Element to explain + +(for example console.log) -Description +=Links + -Wikipedia + -anotherlink,com diff --git a/Data_Structures/Hash_Table/README.md b/Data_Structures/Hash_Table/README.md index f3e777d..1d8ae5e 100644 --- a/Data_Structures/Hash_Table/README.md +++ b/Data_Structures/Hash_Table/README.md @@ -1,6 +1,21 @@ +![](http://i.imgur.com/BgUMUGU.png) + # Hash Tables A hash table (hash map) is a data structure used to implement an associative array, a structure that can map keys to values. -![](http://i.imgur.com/bfka9TL.png) +![](http://i.imgur.com/bfka9TL.png) + + +# Course Documentation + +(this for me to fill up with every element that you use in lessons. syntax explaination and links for more) + +## Element to explain + +(for example console.log) + +=Links + -Wikipedia + -anotherlink,com \ No newline at end of file diff --git a/ES6/Arrow_Functions/README.md b/ES6/Arrow_Functions/README.md index d08aae5..dea882b 100644 --- a/ES6/Arrow_Functions/README.md +++ b/ES6/Arrow_Functions/README.md @@ -1,3 +1,26 @@ -# Title +![](http://i.imgur.com/BgUMUGU.png) + +# Arrow Functions + +This MD file serves as example/template. -Description +It will be filled up soon. + +(for Bucky to fill up) + + +# Course Documentation + +(this for me to fill up with every element + +that you use in lessons. syntax + +explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com \ No newline at end of file diff --git a/ES6/Classes/README.md b/ES6/Classes/README.md index a0b9717..4ed3950 100644 --- a/ES6/Classes/README.md +++ b/ES6/Classes/README.md @@ -1,3 +1,21 @@ +![](http://i.imgur.com/BgUMUGU.png) + # Classes -JavaScript classes provide a much simpler and clearer syntax to create objects and deal with inheritance. +JavaScript classes provide a much simpler and clearer syntax to create objects and deal with inheritance. + +# Course Documentation + +(this for me to fill up with every element + +that you use in lessons. syntax + +explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com diff --git a/ES6/Constants/README.md b/ES6/Constants/README.md index 66aac25..038e7c1 100644 --- a/ES6/Constants/README.md +++ b/ES6/Constants/README.md @@ -1,4 +1,23 @@ -# const +![](http://i.imgur.com/BgUMUGU.png) + +# Constants The const declaration creates a read-only reference to a value. It does not mean the value it holds is immutable, just -that the variable identifier cannot be reassigned. +that the variable identifier cannot be reassigned. + + +# Course Documentation + +(this for me to fill up with every element + +that you use in lessons. syntax + +explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com \ No newline at end of file diff --git a/ES6/Generators/README.md b/ES6/Generators/README.md index 666b513..ece2162 100644 --- a/ES6/Generators/README.md +++ b/ES6/Generators/README.md @@ -1,3 +1,22 @@ +![](http://i.imgur.com/BgUMUGU.png) + # Generators -Generators are functions that generate objects when called. +Generators are functions that generate objects when called. + + +# Course Documentation + +(this for me to fill up with every element + +that you use in lessons. syntax + +explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com \ No newline at end of file diff --git a/ES6/Inheritance/README.md b/ES6/Inheritance/README.md index d08aae5..0b8575e 100644 --- a/ES6/Inheritance/README.md +++ b/ES6/Inheritance/README.md @@ -1,3 +1,26 @@ -# Title +![](http://i.imgur.com/BgUMUGU.png) + +# Inheritance + +This MD file serves as example/template. -Description +It will be filled up soon. + +(for Bucky to fill up) + + +# Course Documentation + +(this for me to fill up with every element + +that you use in lessons. syntax + +explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com \ No newline at end of file diff --git a/ES6/Let/README.md b/ES6/Let/README.md index 1fe70a7..bc708e5 100644 --- a/ES6/Let/README.md +++ b/ES6/Let/README.md @@ -1,4 +1,21 @@ +![](http://i.imgur.com/BgUMUGU.png) + # let -The let statement declares a block scope local variable. +The let statement declares a block scope local variable. + +# Course Documentation +(this for me to fill up with every element + +that you use in lessons. syntax + +explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com \ No newline at end of file diff --git a/ES6/Spread_Operator/README.md b/ES6/Spread_Operator/README.md index c31cab2..fe3fa34 100644 --- a/ES6/Spread_Operator/README.md +++ b/ES6/Spread_Operator/README.md @@ -1,4 +1,22 @@ +![](http://i.imgur.com/BgUMUGU.png) + # Spread Operator The spread operator allows an expression to be expanded in places where multiple arguments (for function calls) or -multiple elements (for array literals) or multiple variables (for destructuring assignment) are expected. +multiple elements (for array literals) or multiple variables (for destructuring assignment) are expected. + +# Course Documentation + +(this for me to fill up with every element + +that you use in lessons. syntax + +explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com \ No newline at end of file diff --git a/ES6/Template_Literals/README.md b/ES6/Template_Literals/README.md index 5761639..9a2ee2d 100644 --- a/ES6/Template_Literals/README.md +++ b/ES6/Template_Literals/README.md @@ -1,3 +1,21 @@ +![](http://i.imgur.com/BgUMUGU.png) + # Template literals -Template literals are string literals allowing embedded expressions. +Template literals are string literals allowing embedded expressions. + +# Course Documentation + +(this for me to fill up with every element + +that you use in lessons. syntax + +explaination and links for more) + +## Element to explain + +(for example console.log) + +***Links*** + - Wikipedia + - Anotherlink,com