Let me know if im right with the difference...
Importing a class allows us to use the methods of another class...
But if we wanted to use another classes properties (attributes and methods) in an object of our class we woul have to extend it.
So basically, importing allows us to use other class methods, extending actually gives our class its properties so that objects of our class can make use of them.
Right?
Thanks.