JavaScript/Notes/: Difference between revisions
| Line 14: | Line 14: | ||
== [https://noisebridge.net/wiki/JavaScript/Notes/Debugging Debugging]== | == [https://noisebridge.net/wiki/JavaScript/Notes/Debugging Debugging]== | ||
Browsers provide debuggers that can be launched from a breakpoint or the debugger keyword. | |||
== [https://noisebridge.net/wiki/JavaScript/Notes/ClassnameSwap ClassName Swap] == | == [https://noisebridge.net/wiki/JavaScript/Notes/ClassnameSwap ClassName Swap] == | ||
Revision as of 06:03, 1 January 2014
You down with OOP? - Yeah you know me!
When: Every Friday night from 7:00PM — 8:45PM.
Teacher: Garrett Smith
Hearken to the days of view-source:! In this course, I'll explore Object Oriented JavaScript as it pertains to client side web programming. And some DOM stuff.
Resources https://noisebridge.net/wiki/Web_Development_Resources
Browsers provide debuggers that can be launched from a breakpoint or the debugger keyword.
Event Delegation and the Cascade.
Functions are callable objects with an internal [[Scope]] property. Learn how to call functions and pass functions to other functions, where they can be later called.
Learn how the prototype chain works.
This class covers closures.
Singleton with information hiding in function scope.
Two interfaces with a similar signature. The Devil's in the details -- encapsulate them!
An abstract system for event notification.
An system for DOM event notification, designed to handle delegation and specific event models.
The Factory pattern, the Decorator pattern, newApply, and the holy grail: Abstract Factory.
Passing around lists of parameters? Typechecking arguments? Stop doing that. Here's how to make your code clearer and less error-prone.