Learning JavaScript 101 (wad-js-01)

JavaScript

Introduction

  1. Java and JavaScript?
  2. ECMAScript ES6
  3. V8 Engine
  4. The JavaScript Ecosystem
    • Browser and HTML
    • Server Side: Node.js
    • Mobile
      • Apache Cordova
      • React Native, Redux
  5. Tools
    • JQuery
    • Bootstrap
    • Angular
    • React
  6. Data Types
    • Variables
      • Constants
        let
        const
        var
        naming conventions
        characters, camelcasing, reserved words
      • Literals
        var a = 1;
      • Variables
        var b = a;
    • Primitive Types
      • number
      • string
      • boolean
      • Null
      • Undefined
    • Object Types
      • Array
      • Date
      • Number
      • String
        • double quotes
        • single quotes
        • escaping
        • concatenation
        • template strings
      • Boolean
        • True, 1
        • False, 0
  7. Functions
  8. Document Object Model (DOM) and JavaScript

Leave a Reply

Your email address will not be published. Required fields are marked *