A few days ago I saw a question on the ServiceNow community about how inheritance works in a script include so I thought to write a short article about that.
In Script include we can write a function or we can create a class. In JavaScript, class is an object, an object can access properties and functions from another object, this we call Inheritance
Inheritance is a great way to create a parent/child hierarchy of classes. A good use case for inheritance is when you wish to indicate that one object is mostly similar to another, but with some variations.
Continue reading →