Inheritance in JavaScript

JavaScript does not have classes unlike other languages. It uses the concept of prototypes and prototype chaining for inheritance. If you do not what is prototype, please go through this article… Read more

Similar

The JavaScript Standard

JavaScript has gone from being a marketing ploy to gain a tactical advantage, to becoming the core programming experience in the world’s most widely used application runtime platform. Where to, next? (more…)

Read more »

JavaScript Comparison Operators

Comparison operators are frequently used in JavaScript applications, and are an important part of controlling the logic flow of the app. But if you don’t have a good understanding of how they work you can run into a couple issues. Understanding strict com... (more…)

Read more »