vote up 13 vote down star
4

There have been some questions about whether or not JavaScript is an object-oriented language. Even a statement, "just because a language has objects doesn't make it OO."

Is JavaScript an object-oriented language?

flag

i would add the "subjective" tag – Sklivvz Sep 20 '08 at 7:21
I don't think this is subjective. It either is or it isn't or there is a specific reason for it being in the middle. Why do you think it is subjective? – spoon16 Sep 20 '08 at 7:26
This question had 11 answers within 34 seconds of being posted - wow. – micahwittman Sep 20 '08 at 8:44
1  
Because the definition of "object-oriented" does not specify a series of criteria to determine an exact answer – Sklivvz Sep 20 '08 at 14:00
I agree with Sklivvz this is subjective since the there is no authority specifying exactly what characteristics a language must have to be have the adjective 'object-oriented'. – AnthonyWJones Sep 20 '08 at 16:46
show 1 more comment

24 Answers

vote up 17 vote down check

IMO (and it is only an opinion) the key characteristic of an object orientated language would be that it would support polymorphism. Pretty much all dynamic languages do that.

The next characteristic would be encapsulation and that is pretty easy to do in Javascript also.

However in the minds of many it is inheritance (specifically implementation inheritance) which would tip the balance as to whether a language qualifies to be called object oriented.

Javascript does provide a fairly easy means to inherit implementation via prototyping but this is at the expense of encapsulation.

So if your criteria for object orientation is the classic threesome of polymorphism, encapsulation and inheritance then Javascript doesn't pass.

Edit: The supplementary question is raised "how does prototypal inheritance sacrifice encapsulation?" Consider this example of a non-prototypal approach:-

function MyClass() {
    var _value = 1;
    this.getValue = function() { return _value; }
}

The _value attribute is encapsulated, it cannot be modified directly by external code. We might add a mutator to the class to modify it in a way entirely controlled by code that is part of the class. Now consider a prototypal approach to the same class:-

function MyClass() {
  var _value = 1;
}
MyClass.prototype.getValue = function() { return _value; }

Well this is broken. Since the function assigned to getValue is no longer in scope with _value it can't access it. We would need to promote _value to an attribute of this but that would make it accessable outside of the control of code written for the class, hence encapsulation is broken.

Despite this my vote still remains that Javascript is object oriented. Why? Because given an OOD I can implement it in Javascript.

link|flag
How does prototypal inheritance sacrifice encapsulation? – ScottKoon Sep 21 '08 at 3:06
Encapusation requires storing private data on the execution context created when constructing the object. Members added to the prototype do not have access to this execution context and hence can not access the encapsulated data. – AnthonyWJones Sep 21 '08 at 12:03
The example given does not compile in C# either, so would you say that it is not object oriented? public class MyClass : ParentClass { private int _value = 1; } public class ParentClass { public int GetValue() { return _value; } } – liammclennan Oct 29 at 21:44
@liammclennan? I'm not sure what you are driving at? C# is clearly an object oriented. I'm not sure what point is served by attempting to port the Javascript code in my example to C# which is an incomplete port because it doesn't compile. – AnthonyWJones Oct 29 at 22:16
vote up 24 vote down

The short answer is Yes. For more information:

From Wikipedia:

JavaScript is heavily object-based. Objects are associative arrays, augmented with prototypes (see below). Object property names are associative array keys: obj.x = 10 and obj["x"] = 10 are equivalent, the dot notation being merely syntactic sugar. Properties and their values can be added, changed, or deleted at run-time. The properties of an object can also be enumerated via a for...in loop.

Also, see this series of articles about OOP with Javascript.

link|flag
vote up 16 vote down

Javascript is a multi-paradigm language that supports procedural, object-oriented (prototype-based) and functional programming styles.

Here is an article discussing how to do OO in Javascript.

link|flag
vote up 0 vote down

JavaScript is a very good language to write object oriented web apps. It can support OOP because supports inheritance through prototyping also properties and methods. You can have polymorphism, encapsulation and many sub-classing paradigms.

link|flag
vote up 15 vote down

Languages do not need to behave exactly like Java to be object-oriented. Everything in Javascript is an object; compare to C++ or earlier Java, which are widely considered object-oriented to some degree but still based on primitives. Polymorphism is a non-issue in Javascript, as it doesn't much care about types at all. The only core OO feature not directly supported by the syntax is inheritance, but that can easily be implemented however the programmer wants using prototypes: here is one such example.

link|flag
A nitpick: Javascript has primitive values as well, and they are not objects. Undefined, null, boolean, number, and string, to be spesific. – Internet Friend Sep 20 '08 at 7:43
I know Javascript has primitive types, but I don't really consider them such in the usual sense because they still act like objects (except those that explicitly mean "nothing"). typeof("foo") gives you 'string' rather than 'object', yes, but strings still have methods; "foo".substr(1) works. – Eevee Sep 20 '08 at 7:51
Ha, I don't mean to be inciting wars, just comparing to a language that is nearly universally considered OO. Perhaps I should clarify that a bit. – Eevee Sep 20 '08 at 8:08
I removed my comment as it's no longer relevant. Disperse please, nothing to see here :) – Internet Friend Sep 20 '08 at 8:14
@InternetFriend - typeof(null) = 'object', boolean, number and string are all classes extending object, undefined is never a value, it is by definition the absence of a value and where it itself is defined it's as a property – annakata Dec 28 '08 at 21:42
show 3 more comments
vote up -1 vote down

The Microsoft Ajax Client Library makes it simple to implement OO in javascript. It supports inharitence, and interface implementation.

link|flag
vote up 0 vote down

I think a lot of people answer this question "no" because JavaScript does not implement classes, in the traditional OO sense. Unfortunately (IMHO), that is coming in ECMAScript 4. Until then, viva la prototype! :-)

link|flag
I guess that depends on which tradition your flavour of OO claims as its own. – Galghamon Feb 18 at 15:39
vote up 0 vote down

I would say it has capabilities to seem OO. Especially if you take advantage of it's ability to create methods on an existing object (anonymous methods in some languages). Client script libraries like jquery (jquery.com) or prototype (prototypejs.org) are good examples of libraries taking advantage of this, making javascript behave pretty OO-like.

link|flag
Why do people think classical OOP is the only true form of OOP. facepalm – Zach Sep 20 '08 at 19:15
vote up 1 vote down

This is of course subjective and an academic question. Some people argue whether an OO language has to implement classes and inheritance, others write programs that change your life. ;-)

(But really, why should an OO language have to implement classes? I'd think objects were the key components. How you create and then use them is another matter.)

link|flag
vote up 2 vote down

Unlike most object-oriented languages, JavaScript (before ECMA 262 Edition 4, anyway) has no concept of classes, but prototypes. As such, it is indeed somewhat subjective whether to call it object-oriented or not.

@eliben: Wikipedia says object-based. That's not the same as object-oriented. In fact, their article on object-based distinguishes between object-oriented languages and prototype-based ones, explicitly calling JavaScript not object-oriented.

link|flag
vote up 0 vote down

I think when you can follow the same or similar design patterns as a true OO language like Java/C#, you can pretty much call it an OO language. Some aspects are obviously different but you can still use very well established OO design pattersn.

link|flag
vote up 0 vote down

JavaScript is Object-Based, not Object-Oriented. The difference is that Object-Based languages don't support proper inheritance, whereas Object-Oriented ones do.

There is a way to achieve 'normal' inheritance in JavaScript (Reference here), but the basic model is based on prototyping.

link|flag
vote up 0 vote down

Everything in javascript is an object - classes are objects, functions are objects, numbers are objects, objects objects objects. It's not as strict about typing as other languages, but it's definitely possible to write OOP JS.

link|flag
1  
Javascript doesn't have classes – troelskn Sep 21 '08 at 15:13
What would you all the identifier on the right hand side of the new keyword? – AnthonyWJones Sep 30 '08 at 21:10
True, javascript doesn't have classes, fair enough - but the objects you make approximate classes, at least regarding how you interact with them. – matt lohkamp Oct 1 '08 at 8:12
Classes are a bookkeeping construct. Object do not neccessarily have anything to do with objects. IMHO what makes an object is the let over lambda. – Gutzofter Oct 15 at 0:27
vote up 1 vote down

A recent Hanselminutes (http://www.hanselminutes.com/default.aspx?showID=146) looks at OO AJAX, it was a good show and definately a good show to help form an opinion.

link|flag
Honestly, that show perpetuated several mischaracterizations about JavaScript and was the reason I asked this question here. I wanted a place I could point to the next time someone made the claim that JavaScript isn't object oriented. – ScottKoon Sep 21 '08 at 2:55
vote up 0 vote down

yes it is. however it doesnt support all of the features one would expect in an object oriented programming language lacking inheritence and polymorphism. this doesnt mean however that you cannot simulate these capabilities through the protyping system that is avaialble to the language.

link|flag
vote up 0 vote down

Javascript is not an object oriented language as typically considered, mainly due to lack of true inheritance, DUCK typing allows for a semi-true form of inheritance/polymorphism along with the Object.prototype allowing for complex function sharing. At its heart however the lack of inheritance leads to a weak polymorphism to take place since the DUCK typing will insist some object with the same attribute names are an instance of an Object which they were not intended to be used as. Thus adding attributes to random object transforms their type's base in a manner of speaking.

link|flag
vote up 6 vote down

JavaScript is object-oriented, but is not a class-based object-oriented language like Java, C++, C#, etc. Class-based OOP languages are a subset of the larger family of OOP languages which also include prototype-based languages like JavaScript and Self.

link|flag
vote up 0 vote down

Technically it is a prototype language, but it's easy to to OO in it.

link|flag
vote up 0 vote down

It is object oriented, but not based on classes, it's based on prototypes.

link|flag
vote up 4 vote down

Yes and no.

JavaScript is, as Douglas Crockford puts it, "the world's most misunderstood programming language." He has some great articles on JavaScript that I'd strongly recommend reading on what exactly JavaScript is. It has more in common with LISP that C++.

link|flag
vote up 3 vote down

JavaScript is a prototype-based programming language (probably prototype-based scripting language is more correct definition). It employs cloning and not inheritance. A prototype-based programming language is a style of object-oriented programming without classes. While object-oriented programming languages encourages development focus on taxonomy and relationships, prototype-based programming languages encourages to focus on behavior first and then later classify.

The term “object-oriented” was coined by Alan Kay in 1967, who explains it in 2003 to mean “only messaging, local retention and protection and hiding of state-process, and extreme late-binding of all things.”

In object-oriented programming, each object is capable of receiving messages, processing data, and sending messages to other objects.

For a language to be object-oriented in may include features as encapsulation, modularity, polymorphism, and inheritance, but it is not a requirement. Object-oriented programming languages that make use of classes are often referred to as classed-based programming languages, but it is by no means a must to make use of classes to be object-oriented.

JavaScript uses prototypes to define object properties, including methods and inheritance.

Conclusion: JavaScript IS object-oriented.

Ódýr vefhýsing

link|flag
I suspect only a few of us are old enough to remember that definition of Object Oriented. I remember delivering an OOD using VAX BASIC something like 20 years ago. – AnthonyWJones Sep 30 '08 at 21:14
vote up 0 vote down

Fun thread and thanks for all the input.

link|flag
vote up 0 vote down

it is a good thread. Here's some resources i like. Most people start out with prototype, jquery, or one of the top 6 libs(mootools, ExtJS, YUI), which have different object models. Prototype tries to replicate classical O-O as most people think of it

http://jquery.com/blog/2006/08/20/why-jquerys-philosophy-is-better/

Here's a picture of prototypes and functions that i refer to a lot

http://www.mollypages.org/misc/js.mp?

link|flag
vote up 0 vote down

Objects in javascript inherit directly from objects - wjat can be more object oriented?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.