Skip to content

Commit 9123753

Browse files
committed
updated readme
1 parent ccab07c commit 9123753

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Please note that the outlines, studies, and extended studies are roughly organiz
7070

7171
Each question asks about a given topic for a specific category, like "*What is a variable*". In any cases, there is a "short answer" Topics include: *variables, datatypes, functions, control flow, objects, arrays, jQuery, loops, application logic, api's, ajax, etc.*
7272

73-
Example: *JavaScript_Recipes > JavaScript Outlines > [**controlFlow.js**](https://github.com/john-azzaro/JavaScript_Recipes/blob/master/JavaScript%20Outlines/controlFlow.js "control flow outline")*:
73+
**Example:** *JavaScript_Recipes > JavaScript Outlines > [**controlFlow.js**](https://github.com/john-azzaro/JavaScript_Recipes/blob/master/JavaScript%20Outlines/controlFlow.js "control flow outline")*:
7474
```JavaScript
7575
/*
7676
3. What is a switch statement?
@@ -111,17 +111,18 @@ Example: *JavaScript_Recipes > JavaScript Outlines > [**controlFlow.js**](https:
111111
## JavaScript Libraries
112112
* In [JavaScript Libraries](https://github.com/john-azzaro/JavaScript_Recipes/tree/master/JavaScript%20Libraries "JavaScript Libraries"), you'll find outlines of a growing number of JavaScript libraries organized in question-and-answer format (good for study and memory retention).
113113

114-
Example: *JavaScript_Recipes > JavaScript Libraries > jQuery > [**jQuery.js**](https://github.com/john-azzaro/JavaScript_Recipes/blob/master/JavaScript%20Libraries/jQuery/jQuery.js "jQuery.js")*:
114+
**Example:** *JavaScript_Recipes > JavaScript Libraries > jQuery > [**jQuery.js**](https://github.com/john-azzaro/JavaScript_Recipes/blob/master/JavaScript%20Libraries/jQuery/jQuery.js "jQuery.js")*:
115115

116116
```JavaScript
117117
/*
118118
7. What is an Event Listener?
119119
/////////////////////////////
120-
• An Event Listener listens for a specific event to happen (i.e. submit, click, etc.) and does something (i.e. callback function).
120+
• An Event Listener listens for a specific event to happen (i.e. submit, click, etc.) and does
121+
something (i.e. callback function).
121122
• To take advantage of DOM manipulation, you need to be able to alter the DOM when EVENTS happen.
122123
• In order to update the DOM, you need to 'listen' for specific events happening.
123124
• For example:
124-
• an app LISTENS when the user submits a form
125+
• an app LISTENS when the user submits a form.
125126
• an app LISTENS for when the user inputs a search term.
126127
• an app LISTENS for when the user clicks on an element in the page to launch an animation.
127128
@@ -155,7 +156,7 @@ Example: *JavaScript_Recipes > JavaScript Libraries > jQuery > [**jQuery.js**](h
155156
## Coding Studies
156157
* In [Coding Studies](https://github.com/john-azzaro/JavaScript_Recipes/tree/master/Coding%20Studies "Coding Studies"), you'll find walk-throughs and solutions to complex computer science, programming, algorithm and data structure problems for study and reference. Topics include: *runtime complexity, finding vowels, anagrams, etc*.
157158

158-
Example: *JavaScript_Recipes > Coding Studies > [**reverseString.js**](https://github.com/john-azzaro/JavaScript_Recipes/blob/master/Coding%20Studies/reverseString.js "reverse string")*:
159+
**Example:** *JavaScript_Recipes > Coding Studies > [**reverseString.js**](https://github.com/john-azzaro/JavaScript_Recipes/blob/master/Coding%20Studies/reverseString.js "reverse string")*:
159160

160161
```JavaScript
161162
// OBJECTIVE //////////////////////////////////////////////////////////////////////////////////////////
@@ -213,7 +214,7 @@ Example: *JavaScript_Recipes > Coding Studies > [**reverseString.js**](https://g
213214
## Methods Extended Study
214215
In [Methods Extended Study](https://github.com/john-azzaro/JavaScript_Recipes/tree/master/Methods%20Extended%20Studies "Methods Extended Study"), you'll find extended studies on a variety of methods such as arrays, Math, number, operators, strings, etc. that include additional explanations, break-downs, and use-cases. Although some of the content overlaps with JavaScript Outlines, these studies allow for more detail than in the general outline.
215216

216-
Example: *JavaScript_Recipes > Methods Extended Studies > Array Methods Extended Study > [**entries.js**](https://github.com/john-azzaro/JavaScript_Recipes/blob/master/Methods%20Extended%20Studies/Array%20Methods%20Extended%20Study/entries.js "entries array method")*:
217+
**Example:** *JavaScript_Recipes > Methods Extended Studies > Array Methods Extended Study > [**entries.js**](https://github.com/john-azzaro/JavaScript_Recipes/blob/master/Methods%20Extended%20Studies/Array%20Methods%20Extended%20Study/entries.js "entries array method")*:
217218

218219
```JavaScript
219220
// TOPIC ////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)