+ 3
What is the difference between object based and object oriented programming?
2 Answers
+ 3
I thought they were the same thing.
+ 1
Object-based language:
1. Doesn't support all the features of OOPs (object-oriented) like polymorphism or inheritance.
2. Has in-built objects like JavaScript has the window object.
Object-oriented language:
1. Support all of it concept: Inheritance, Object, Class, Encapsulation, Method, Message Passing, Polymorphism, and Abstraction.
2. No in-built objects
Object-oriented language: C++, C#, Java etc.
Object-based language: JavaScript, VB etc.