JavaScript: Difference between revisions
Jump to navigation
Jump to search
| Line 34: | Line 34: | ||
* Strategy/delegation - Example: APE StyleTransition object. | * Strategy/delegation - Example: APE StyleTransition object. | ||
===Tools | ===Tools === | ||
* Dust Me CSS Selectors [https://addons.mozilla.org/en-US/firefox/addon/dust-me-selectors/] | * Dust Me CSS Selectors [https://addons.mozilla.org/en-US/firefox/addon/dust-me-selectors/] | ||
* Color Zilla [https://addons.mozilla.org/en-US/firefox/addon/colorzilla/] | * Color Zilla [https://addons.mozilla.org/en-US/firefox/addon/colorzilla/] | ||
Revision as of 19:19, 21 October 2013
JavaScript Class
By Garrett Smith Held weekly, Friday 7pm
Course Overview
This course covers Object Oriented JavaScript, testing, and the DOM.
EcmaScript Programming Language
- Property accessors,
[]and. - Prototypal inheritance
- typeof operator
- Arrays
- Primitive types
- Functions, callbacks, "I'm done", Event Notification System
- Scope chain and identifier resolution, Closures
- Entering an execution context (this)
call,apply)- [[Construct]], [[Call]]
- Literal syntax [], {}, /a/i RegularExpression literal
ECMA 6
- Promises
- Modules
DOM
- Debugging Tools
- Validator.w3.org
Patterns and Object Oriented JavaScript
- Decorator pattern
- Custom Events
- EventRegistry
- Factory, Abstract Factory
- Strategy/delegation - Example: APE StyleTransition object.