Please enable JavaScript.
Coggle requires JavaScript to display documents.
web developement, JAVASCRIPT, HOW ARE THEY CONNECTED, CUMULATIVE EFFECTS,…
web developement
-
HTML
-
-
-
Syntax
Tags
-
What does it do
Tag has a element
-
Elements
Attributes
-
-
Attribute value
- 1 more item...
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Content model
Before html5
Inline
-
-
-
a tag(ANCHORTAG)
its both m,eans you can have inside of it div
-
-
-
-
-
Block level
Div(division)
note that inside the content any new line character any tabs and more than one space are all ignored so each of these things are equivalent to a single space character
<div> hell0 , (newline) david</div>
will be shown as hello, david
-
-
-
-
-
-
-
-
-
-
DOM
THE DOM IS DIFFERENT FROM THE SOURCE CODE HTML BASICALLY THE BROWSER RENDERS THE DOM WHCIH IS THE MODIFIED VERSION OF THE SOURCE CODE AS DONE BY THE BROWSER AT THE TIME OF RENDERING
-
Important resources
-
-
-
-
Its important to keep track of the constantly changing world its standards and software supports in order to use the new features and ensure that it works
-
-
-
-
-
-
-
-
-
-
-
JAVASCRIPT
types
-
6 primitive types
-
-
they are
Undefined
automatically assign to a variable when we havent assigned value for that variable BUT WE HAVE DEFINED THE VARIABLE
-
-
-
-
-
-
-
-
-
-
-
-
although javascript has automatic semicolon insertion but it can lead to problem so always put the semicolons
-
for loops
initialize a variable , condition , increment or decrement (note incr or decr takes place after the loop has been executed )
-
-
-
-
-
-