Skip to content

Learning JS - de facto language of the web | Auditing the JS Course by Jonas Schmedtmann on Udemy

License

Notifications You must be signed in to change notification settings

arobind/JavaScript

 
 

Repository files navigation

JavaScript

Learning the JavaScript Language from the Internet

Resources:

  1. JS Course & Github Repo for JS by Jonas Schmedtmann
  2. You Don't Know JS by Kyle Simpson (getify)
  3. JS Docs by MDN

More resources will be added depending on the usefulness of the resource.


Index

Syntax - <topic name>: <html file> | <JavaScript file>

  1. JavaScript Basics

    1. Hello World!:
      1. Inline Script: hello_i.html
      2. External Script: hello_e.html | hello.js
    2. Variables & Data Types: var_dt.html | var_dt.js
    3. Variable Mutation & Type Coercion: vm_tc.html | vm_tc.js
    4. Basic Operators: operators.html | operators.js
    5. Coding Challenge I: challenge_1.html | challenge_1.js
    6. Control Structures & Boolean Logic: cs_bl.html | cs_bl.js
    7. Coding Challenge II: challenge_2.html | challenge_2.js
    8. functions - Declarations & Expressions: functions.html | functions.js
    9. Arrays: arrays.html | arrays.js
    10. Coding Challenge III: challenge_3.html | challenge_3.js
    11. Objects - Properties & Methods: objects.html | objects.js
    12. Coding Challenge IV: challenge_4.html | challenge_4.js
    13. Looping & Iteration: loops.html | loops.js
    14. Coding Challenge V: challenge_5.html | challenge_5.js
  2. JS Behind the Scenes

    1. Execution Context & Execution Stack: exec.html | exec.js
    2. Exectution Context in Detail
      1. Hoisting: hoisting.html | hoisting.js
      2. Scoping & Scope Chain: scope.html | scope.js | scope.pdf - view or download
      3. The this Keyword: this.html | this.js
  3. JS DOM: The Pig Game

    1. Common Markup for ii-vii: index.html & style.css
    2. DOM Access & Manipulation: app.js
    3. Events & Event Handling: app.js
    4. Adding, Removing & Toggling HTML Classes: app.js
    5. DRY Principle & More DOM Manipulation: app.js
    6. Creating Initialization Function for the Game: app.js
    7. Adding Game State: app.js final version (Easy) | Play the game @CodeSandBox
    8. Pig Game: app.js final version (Hard) | Play the game @Repl.it | Updated Markup - index.html & style.css

  4. Advanced JS: Objects & Functions

    1. Object Creation, Inheritence & prototype Chain: obj.html | obj.js | prototypeChain.pdf - view or download
    2. Primitives vs. Objects: prim_vs_obj.html | prim_vs_obj.js
    3. First Class Functions: first_class_functions.html | first_class_functions.js
    4. Immediately Invoked Function Expressions (IIFE): iife.html | iife.js
    5. Closures: closure.html | closure.js | closure.pdf - view or download
    6. bind(), call() & apply(): bind_call_apply.html | bind_call_apply.js
    7. Coding Challenge VII: challenge_7.html | challenge_7.js
    8. Event Bubbling, Target Element & Event Delegation: eventDelegation.html | eventDelegation.pdf - view or download. Reading of eventDelegation.pdf required before understanding the code from Budgety App (k) and thereafter.
    9. Budgety App

      1. Common Markup: index.html & style.css
      2. Module Pattern, Encapsulation & Separation of Concerns: app.js
      3. keypress Events & event Object: app.js
      4. Reading HTML Input Data w. Separation of Concerns: app.js
      5. Adding the Initialization Function: app.js
      6. Function Constructors and Data Structures for Incomes & Expenses: app.js
      7. Avoiding Data Structure Conflicts & Passing Data from One Module to Another: app.js
      8. Usage of innerAdjacentHTML() method & replace() method: app.js
      9. Usage of querySelectorAll() method, Conversion of NodeList to Array & the usage of forEach() method: app.js
      10. Converting HTML Field Inputs to Numbers & Preventing False Item Inputs: app.js
      11. Creating functions for a singular purpose: app.js
      12. Event Delegation in Practice - The parentNode property: app.js
      13. Usage of map() and splice() methods on an array: app.js
      14. How to remove an element from the DOM using removeChild(): app.js
      15. Usage of prototype to define a method in a predefined function constructor: app.js
      16. How to implement a forEach() for NodeList instead of array: app.js
      17. How to use different String methods to manipulate strings: app.js
      18. How to get the current date using the Date object constructor: app.js
      19. How and when to use change events: app.js
      20. Budgety App: app.js (final version) | Use the app @netlify

  5. Next Generation JavaScript - Intro to ES6/ES2015

    1. List of New Concepts in ES6: es6.html
    2. Variables declared using let & const: let_const.html | let_const.js
    3. Blocks & IIFEs: block_iife.html | block_iife.js
    4. Strings & String Functions: strings.html | strings.js
    5. Arrow Functions Intro: arrow_func.html | arrow_func.js
    6. Arrow Functions - Lexical this Keyword: arrow_func_this.html | arrow_func_this.css | arrow_func_this.js
    7. Destructuring: destructuring.html | destructuring.js
    8. Arrays in ES6 (ES2015): arrays.html | arrays.css | arrays.js
    9. The Spread ... Operator: spread.html | spread.css | spread.js
    10. Function Parameters
      1. Rest Parameters: rest.html | rest.js
      2. Default Parameters: default.html | default.js
    11. The Map Data Structure: map.html | map.js
    12. classes (Syntactic Sugar): class.html | class.js
    13. Inheritance - Classes & Subclasses (ES5 - Object.create() / ES6 - extends): inheritance.html | inheritance.js
    14. Challenge VIII: challenge8.html | challenge8.js
  6. Asynchronous JavaScript

    1. An Example of Asynchronous JavaScript: intro.html
    2. Understanding Asynchronous JS, The Event Loop: event_loop.html | event_loop.pdf - view or download
    3. Callback Hell - The Old Way: callback_hell.html
    4. From Callback Hell to Promises: promise.html | promise.pdf - view or download
    5. From Promises to async/await in ES8/ES2017: async_await.html
    6. AJAX & API - What do they mean? : ajax_api.html | ajax_api.pdf - view or download

About

Learning JS - de facto language of the web | Auditing the JS Course by Jonas Schmedtmann on Udemy

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 61.9%
  • HTML 34.0%
  • CSS 4.1%