Type Aliasing
Explore how to define methods on types you don't own in Go by using type aliasing. Understand that aliasing creates a new name for an existing type without introducing a new type or altering the original meaning.
We'll cover the following...
We'll cover the following...
To define methods on a type you don’t “own”, you need to define an alias for the type you want to extend.
Example
Down below is another example ...