Clean JavaScript inheritance
Clean JavaScript inheritance Object extending in JavaScript is done with the prototype property, and in most cases simple prototype reassignment is sufficient for creating classes. But when you are developing a more complex application, you code quickly becomes ugly, because … Continue reading