Skip to content

Instantly share code, notes, and snippets.

@OfTheDelmer
Created March 5, 2014 04:01
Show Gist options
  • Save OfTheDelmer/9360916 to your computer and use it in GitHub Desktop.
Save OfTheDelmer/9360916 to your computer and use it in GitHub Desktop.
topics for prototype lesson

Intro to Prototypes

JS Data Structures

Outline

  • Objects in Javascript?
    • object literals
    • properties
  • Functions
    • as objects
    • returning objects
    • using apply
    • trying to efficiently create methods
  • Function Prototypes
    • private variables
    • private functions
    • public variables
    • chaining
  • Recursive Structures
    • Tree Structures
      • binary tree
        • left and right nodes
      • n-ary tree
        • using an array
    • Trie Structure
      • A tree using an object

Resources

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment