...
/Introduction to Subtyping in Plain JavaScript
Introduction to Subtyping in Plain JavaScript
Let’s have a quick introduction of the contents of the chapter.
We'll cover the following...
Introduction
Whenever an application has to manage the data of a larger number of object types, there may be various subtype relationships between some of the object types. Handling subtype relationships is an advanced issue in software application engineering. It’s often not well supported by application development frameworks.
In this chapter, we’ll first explain the ...