← Back Home
Code Shortcuts ChatGPT Questions
tutorial thumbnail

sidebar-html-page-temp

Parts

  • 1. Inheritance w/ classes
    .__proto__ depreciated
  • 2. [[Prototype]]
    .prototype
    vs

    .__proto__
  • 3. Prototypal Inheritance creating class function()
  • 4. this in the class constructor function Person
  • 5. Add properties to this
    add methods to prototype of parent
  • 6. extends
  • 7. 2 other ways, create objects that inherit
    Object.create()
    Object.setPrototypeof()