JavaScript Basics
- Functional Instantiation
- Prototype
- Object.create
- Prototypal instantiation
- Pseudoclassical Instantiation (new keyword)
- ES6 Classes
- Static Methods
- hasOwnProperty
Programming Paradigm
Great Articles
A Beginner’s Guide to JavaScript’s Prototype - Covering all the essential concepts and techniques related to objects and prototypes in JavaScript. You will learn how to create and manipulate objects using different methods, such as function instantiation, object.create
, the new
keyword, and the ES6 class
syntax. You will also understand the role of prototypes and how they enable inheritance and shared methods among objects. Moreover, the article also explores some related topics, such as static methods, hasOwnProperty
, Object.getPrototypeOf
, and more. By the end of this article, you will have a solid grasp of the object-oriented features of JavaScript and how to use them effectively.