Skip to content Skip to sidebar Skip to footer
Showing posts with the label Prototypal Inheritance

Critique My Prototypal Inheritance Pattern

I've decided to use Object.create, as it seems much more intuitive than using 'new' and… Read more Critique My Prototypal Inheritance Pattern

Extends Challenge: Preprocessor Function Macros And Class-like Oop

Background I've been using the C preprocessor to manage and 'compile' semi-large javasc… Read more Extends Challenge: Preprocessor Function Macros And Class-like Oop

Js Prototype Objects Not Inherited?

My question is about a strange output that I came across while playing with JS prototypal inheritan… Read more Js Prototype Objects Not Inherited?

Why Function.prototype Cannot Be Modified ?

in the Function.prototype page it's written this : Function objects inherit from Function.prot… Read more Why Function.prototype Cannot Be Modified ?

Javascript Prototypal Inheritance - Truly Understanding The Concept

I was looking at this video explanation(https://www.youtube.com/watch?v=qMO-LTOrJaE) of JS prototyp… Read more Javascript Prototypal Inheritance - Truly Understanding The Concept

Why My __proto__ Reference Shows Wrong Name In Console?

My proto reference of 'mike' instance points to 'Student' but as its name shows &#… Read more Why My __proto__ Reference Shows Wrong Name In Console?