From Basics to Advanced Techniques

Requirements

  1. Modular Pattern
  2. Callbacks
    1. Advantage of named function callbacks over anonymous function callback
  3. EcmaScript 6 Proficiency (ES6)
    1. Differences between ES5 and ES6 and how to refactor old to new
  4. Hoisting
  5. IFFE
  6. Dynamic vs. Lexical Scope
  7. Prototypes & Classes
  8. Closures
  9. Asynchronous
    1. ES6 Promises
    2. ES7 async & await
    3. Basic understanding of http and https
  10. Unit Tests
    1. Framework
      1. Mocha
    2. Abstraction layer
      1. Assert
  11. Functional programming
    1. Why use
    2. What is it

Intro to JavaScript


JavaScript is the programming language used on both the front-end (React & Redux) and the back-end (Node.js). It's the language you will need to spend the most time becoming proficient in.

First let's get introduced to the language. JavaScript for Cats is a lighthearted introduction to the JavaScript language and a great starting point. Code school offers many course that you can go through on JavaScript for a fee. The first "roadtrip", JavaScript - Code School, is free.

Kyle Simpson has written a series of books diving deep into the core mechanisms of the JavaScript language. Reading through these books and practicing the concepts in your projects will quickly advance your knowledge and skill with the language. Here is a GitHub link to the book series: You Don't Know JS

  • egghead.io: Egghead.io offers bite sized web development video training. Unfortunately, this costs a fee, but the lessons offered are great. If you are a GoGuardian employee, you'll have access to our company account. "Level up your programming skills today with condensed video lessons on industry leading web frameworks and tools!"

ES6

Asynchronous


Promises

Async/Await