‘extend’ VS ‘implements’ in TypeScript
What is the difference between extends and implements ? class Media { format: string; } class Video extends Media {} class Image implements…
Design – Plan – Write
What is the difference between extends and implements ? class Media { format: string; } class Video extends Media {} class Image implements…
There are different ways to solve that, depending of the situation or what we want to achieve. Solution A :…