1 - Prototypal Inheritance.mp4 (245.67 MB) MP4 11 - Hypothetical project example.mp4 (152.16 MB) MP4 4 - All objects have a Prototype.mp4 (104.63 MB) MP4 6 - There are different Prototype objects.mp4 (63.66 MB) MP4 7 - Functions are special.mp4 (64.76 MB) MP4 9 - In jаvascript objects rule the roost.mp4 (48.67 MB) MP4 147 - Outro.mp4 (110.86 MB) MP4 13 - Section intro.mp4 (12.52 MB) MP4 15 - All objects have a Prototype property.mp4 (44.66 MB) MP4 16 - The Prototype is hidden.mp4 (25.33 MB) MP4 17 - Why is the Prototype an internal property.mp4 (61.61 MB) MP4 20 - Almost everything in jаvascript inherits from the Object interface.mp4 (58.49 MB) MP4 23 - Primitive values and object wrappers.mp4 (73.59 MB) MP4 25 - Creating an object primitive using a constructor.mp4 (10.46 MB) MP4 26 - Primitives taking a step back.mp4 (11.02 MB) MP4 27 - Creating a custom Prototype.mp4 (52.25 MB) MP4 29 - Setting prototypes example.mp4 (38.76 MB) MP4 30 - The prototype of an object literal will point to its constructors prototype.mp4 (65.41 MB) MP4 31 - Developers jargon.mp4 (25.41 MB) MP4 32 - Inherited methods.mp4 (11.75 MB) MP4 33 - The prototype chain.mp4 (62.04 MB) MP4 34 - A prototype chain example.mp4 (48.69 MB) MP4 35 - The prototype will eventually point to null.mp4 (44.49 MB) MP4 37 - The prototype has limitations.mp4 (29.93 MB) MP4 38 - Shadowing inherited properties and methods.mp4 (32.55 MB) MP4 40 - The prototype does not affect the value of THIS.mp4 (32.7 MB) MP4 41 - Looping through objects.mp4 (15.34 MB) MP4 42 - Enumerable properties.mp4 (79.3 MB) MP4 43 - Iterating methods.mp4 (112.15 MB) MP4 44 - Warning dont change the prototype on the fly.mp4 (26.01 MB) MP4 45 - Warning dont mess with inbuilt prototype objects.mp4 (55.7 MB) MP4 48 - Summary.mp4 (67.17 MB) MP4 49 - Section intro.mp4 (8.32 MB) MP4 50 - Object Literals.mp4 (142.11 MB) MP4 52 - Instantiation Patterns.mp4 (45.22 MB) MP4 54 - Functional Instantiation.mp4 (137.14 MB) MP4 55 - Shortcomings of functional instantiation.mp4 (107.73 MB) MP4 57 - Functional Shared Instantiation.mp4 (90.51 MB) MP4 59 - Prototypal Instantiation Introduction.mp4 (31.85 MB) MP4 60 - Objectcreate.mp4 (54.75 MB) MP4 61 - Prototypal Instantiation example.mp4 (52.42 MB) MP4 62 - Prototypal Instantiation explained.mp4 (51.01 MB) MP4 64 - Pseudoclassical Instantiation intro.mp4 (47.13 MB) MP4 65 - Pseudoclassical Instantiation example.mp4 (20.51 MB) MP4 67 - Warning you cant add everything to the prototype.mp4 (56.81 MB) MP4 68 - Combining inheritance and constructors.mp4 (38.07 MB) MP4 69 - Arrow syntax cannot be used as a constructor.mp4 (35.56 MB) MP4 71 - Class Instantiation.mp4 (89.9 MB) MP4 75 - Section intro.mp4 (11.32 MB) MP4 76 - proto introduction.mp4 (130.87 MB) MP4 80 - Dunder proto is not an internal property.mp4 (17.81 MB) MP4 82 - proto is partly deprecated in Annex B.mp4 (80.69 MB) MP4 83 - Modern alternatives to getting setting an objects prototype.mp4 (115.79 MB) MP4 85 - Take a step back.mp4 (55.34 MB) MP4 86 - Problem 1 proto is easily configurable.mp4 (62.87 MB) MP4 87 - Problem 2 proto is a special keyword.mp4 (64.08 MB) MP4 88 - Setting an objects prototype to null.mp4 (24.07 MB) MP4 91 - Summary of proto.mp4 (66.43 MB) MP4 100 - The prototype property is an object.mp4 (6.81 MB) MP4 101 - The objects Prototype is assigned to the functions prototype.mp4 (35.62 MB) MP4 102 - Almost all functions have both a Prototype and prototype property.mp4 (123.52 MB) MP4 103 - Why is the Functions prototype property a function and not an object.mp4 (31.88 MB) MP4 105 - There are multiple prototypes in the chain.mp4 (53.41 MB) MP4 106 - What is the constructor property.mp4 (28.44 MB) MP4 107 - A fun test.mp4 (39.51 MB) MP4 108 - The prototype property can be overwritten.mp4 (46.14 MB) MP4 109 - The entire prototype chain revealed.mp4 (63.76 MB) MP4 110 - The Objectprototype rules the roost.mp4 (63.54 MB) MP4 111 - Differences between Prototype and prototype.mp4 (28.03 MB) MP4 113 - Summary of the prototype property.mp4 (69.06 MB) MP4 93 - Only functions have a prototype property.mp4 (60.71 MB) MP4 94 - Some functions do not have a prototype property.mp4 (88.81 MB) MP4 95 - Why developers get confused with the word prototype.mp4 (24.34 MB) MP4 97 - The prototype only matters for constructor functions.mp4 (27.07 MB) MP4 115 - Course project overview.mp4 (41.3 MB) MP4 116 - Using the new keyword to set up a prototype chain prior to 2011.mp4 (31.78 MB) MP4 117 - Creating the prototypal chain using the new keyword.mp4 (43.38 MB) MP4 119 - Fixing the constructor reference problem.mp4 (22.89 MB) MP4 120 - Using Objectcreate to set up a prototype chain after ES5 2011.mp4 (40.11 MB) MP4 122 - Using ObjectsetPrototypeOf to set up a prototype chain after ES6 2015.mp4 (57.68 MB) MP4 123 - Using Classes to set up a prototype chain after ES6 2015.mp4 (42.24 MB) MP4 124 - Using the extends keyword to build our classbased prototype chain.mp4 (44.6 MB) MP4 125 - Building a 3 level custom prototype chain using Constructor Functions.mp4 (37.37 MB) MP4 126 - Building a 3 level custom prototype chain using Classes.mp4 (32.36 MB) MP4 127 - Problems with our code duplication.mp4 (21.56 MB) MP4 128 - Solution using the call method with constructor functions.mp4 (52.24 MB) MP4 129 - Completing 3 levels of prototype inheritance Constructor Functions.mp4 (25.37 MB) MP4 130 - Completing 3 levels of prototype inheritance Class Syntax.mp4 (20.44 MB) MP4 131 - Summary.mp4 (17.34 MB) MP4 134 - What is an OOP language and how do classes and prototypes fit into the picture.mp4 (71.24 MB) MP4 135 - How classbased languages and prototypebased languages deal with inheritance.mp4 (175.11 MB) MP4 136 - Hello World example classes vs prototypes.mp4 (83.4 MB) MP4 138 - Inheritance code with Java a classbased language.mp4 (19.61 MB) MP4 139 - Testing code on JDoodle.mp4 (11.54 MB) MP4 140 - Comparison between classes and prototypes.mp4 (20.39 MB) MP4 141 - Section Summary.mp4 (135.52 MB) MP4 143 - Intro into composition.mp4 (13.1 MB) MP4 144 - Composition code converting our prototypalbased model to composition.mp4 (37.05 MB) MP4 146 - Summary when to use composition vs prototypes.mp4 (5.74 MB) MP4