What to Learn Next

  • Services
  • Input Helpers
  • Components: Block Params
  • Custom Helpers
  • Query Params
  • Ember Data
  • Initializers
  • TESTING

How to Learn Better

  • Follow along
  • Do the exercises
  • Your own app

Object-Oriented

Functional

> phrase = "hello universe"
"hello universe"
> phrase.split(" ")
["hello", "universe"]
> phrase = "hello universe"
"hello universe"
> String.split(phrase, " ")
["hello", "universe"]

What to Learn Next

By Jeffrey Biles

What to Learn Next

  • 584