Description Extension methods enable you to attach methods to existing types without creating a new derived type. While they may look as the are part of the class, in fact when compiled the code will use an extension method by passing the object as the first argument. Typescript allows you to define extension methods (whichRead more