1. Урок 1. 00:01:07
    Introduction to the course
  2. Урок 2. 00:04:33
    Understanding constructor function
  3. Урок 3. 00:03:22
    Quick intro to ES6 class
  4. Урок 4. 00:05:19
    Fixing new keyword bug when invoking constructor function
  5. Урок 5. 00:08:20
    Adding instance methods to constructor function/class
  6. Урок 6. 00:13:32
    How inheritance works in es5 and es6
  7. Урок 7. 00:08:26
    Method overriding
  8. Урок 8. 00:06:31
    Static methods
  9. Урок 9. 00:16:30
    OOPS - Clarification -1 - call and object.create
  10. Урок 10. 00:01:17
    Introduction
  11. Урок 11. 00:00:42
    VDOM Introduction
  12. Урок 12. 00:01:20
    Diffing Process
  13. Урок 13. 00:01:20
    Diffing Process - Append to end
  14. Урок 14. 00:01:01
    Diffing Process - Appending in between other nodes/elements
  15. Урок 15. 00:01:01
    Diffing Process - Delete nodes without keys
  16. Урок 16. 00:01:52
    Diffing Process - Issues - when keys are not there
  17. Урок 17. 00:07:23
    Introduction to JSX
  18. Урок 18. 00:02:23
    JSX built-in element vs custom component
  19. Урок 19. 00:05:28
    Embedding expressions in JSX
  20. Урок 20. 00:03:32
    Returning multiple elements
  21. Урок 21. 00:02:47
    Code Setup
  22. Урок 22. 00:16:15
    Coding createElement function (update 1)
  23. Урок 23. 00:09:32
    Rendering Native DOM elements
  24. Урок 24. 00:06:09
    Setting DOM attributes and events
  25. Урок 25. 00:14:38
    Diffing/Reconciliation of native DOM Elements
  26. Урок 26. 00:01:34
    More testing of DOM diffing
  27. Урок 27. 00:12:33
    Render functional component
  28. Урок 28. 00:02:25
    Passing props to functional component
  29. Урок 29. 00:04:28
    Add more scenarios
  30. Урок 30. 00:02:12
    Remove old nodes when comparing two trees of vdom
  31. Урок 31. 00:07:17
    Rendering Stateful Component
  32. Урок 32. 00:02:43
    Passing props to stateful component
  33. Урок 33. 00:13:59
    Coding the setState method (sync version)
  34. Урок 34. 00:01:53
    Adding lifecycle method stub to the base Component Class
  35. Урок 35. 00:12:40
    Reconciliation/Diffing of Stateful Components
  36. Урок 36. 00:10:55
    Adding ref support to access DOM element
  37. Урок 37. 00:19:42
    More uses cases - Reconciliation when types are different
  38. Урок 38. 00:28:05
    A demo of Todo App and issues with state mutation and lack of keys.
  39. Урок 39. 00:12:11
    Add support for keyed elements
  40. Урок 40. 00:10:20
    Adding support for styled attribute
  41. Урок 41. 01:24:20
    Build your own hooks like library from scratch - 1
  42. Урок 42. 00:52:02
    A quick recap of closures