You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Week1/LESSONPLAN.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ _Show examples of static and dynamic websites_
78
78
79
79
##### Example
80
80
81
-
- An example about relationship between HTML, CSS and Javascript using a methaphor of building a city: https://blog.codeanalogies.com/2018/05/09/the-relationship-between-html-css-and-javascript-explained/
81
+
- An example about relationship between HTML, CSS and Javascript using a metaphor of building a city: https://blog.codeanalogies.com/2018/05/09/the-relationship-between-html-css-and-javascript-explained/
82
82
83
83
##### Exercise
84
84
@@ -98,14 +98,14 @@ Up until now at HackYourFuture, we have been writing websites using HTML and CSS
98
98
99
99
These static pages can interact with a visitor only through the use of forms. Once a form is filled out and submitted, a request is sent back to the server where a new static web page is constructed and eventually downloaded into the browser.
100
100
101
-
A big disadavantage of web pages like this is that the only way that a visitor has of interacting with the page is by filling out the form and waiting for a new page to load.
101
+
A big disadvantage of web pages like this is that the only way that a visitor has of interacting with the page is by filling out the form and waiting for a new page to load.
102
102
103
103
It doesn't exhibit any dynamic behaviour like:
104
104
105
105
1. reacting to user actions such as mouse click events or key presses.
106
106
1. rendering complex animations
107
107
1. sending requests over network to servers and fetching a response
108
-
1.And this is where JavaScript steps in.
108
+
1.and this is where JavaScript steps in.
109
109
110
110
#### 3. What are variables (const & let) & naming conventions
111
111
@@ -175,7 +175,7 @@ TODO(Could be moved to SECOND HALF)
175
175
176
176
Any application written in any programming language requires data or information to work with. This information can be as simple as a string, number or complex types like a list of strings, a mix of strings and numbers etc.
177
177
178
-
For eg, you name and age are simple pieces of information, strings and a number respectively. On the other hand, your house address could be considered as a complex set of information including house number, street name, city, postcode and country.
178
+
For example, your name and age are simple pieces of information, a string and a number respectively. On the other hand, your house address could be considered as a complex set of information including house number, street name, city, postcode and country.
179
179
180
180
Variables are simply named storage/pointer for this information.
0 commit comments