Introduction to Javascript¶
Introduction¶
Goals¶
- Characterize the use of scripting languages on the client.
- Learn the basics of language.
- Manipulate the Document Object Model (DOM) to apply dynamism to documents HTML.
Contents¶
- Dynamize to HTML web pages
- JavaScript integration with HTML
- JavaScript fundamentals
- Functions.
- Built-in objects: String, Math, Array.
- Validations.
- DOM manipulation.
- Events.
- Objects.
- localStorage.
- JSON
Resources¶
- JavaScript Guide at Mozilla Developer Network
- The Modern JavaScript Tutorial
- Javascript Cheatsheet at Codecademy
- https://javascript.info/first-steps
- https://javascript.info/dom-nodes
- https://javascript.info/searching-elements-dom
- https://javascript.info/introduction-browser-events
- https://javascript.info/onload-ondomcontentloaded
- https://javascript.info/modifying-document
- Arrays
- Array Methods
- https://developer.mozilla.org/en-US/docs/Web/API/HTML_DOM_API
- https://www.json.org/json-en.html
- https://javascript.info/object
- https://javascript.info/constructor-new
- https://javascript.info/localstorage
- Fetch at Javascript.info