This is a follow-up article to my earlier post on Object-Oriented JavaScript class basics. There are a few more things that we actually need to dive into object-oriented programming in JavaScript. Today, in this tutorial, I will try to describe how we can leverage the power of inheritance in a JavaScript program. We will also learn how to declare a normal instance method and a … [Read more...] about Object Oriented JavaScript: Inheritance, (Static) Method
oop
Object-Oriented JavaScript: Class Basics
JavaScript has become one of the most dominating programming languages in modern software development. It's everywhere, from browser client-side development to server-side development (Nodejs) to mobile app development(PhoneGap). Unfortunately, it doesn't provide a traditional object-oriented javascript API much.Maybe that's why we see functional-styled, straightforward … [Read more...] about Object-Oriented JavaScript: Class Basics