Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The new keyword in JavaScript can be quite confusing when it is first encountered, as people tend to think that JavaScript is not an object-oriented programming language.

  • What is it?
  • What problems does it solve?
  • When is it appropriate and when not?
share|improve this question
3  
Also, related thread - stackoverflow.com/questions/383402/… – Chetan Sastry Oct 29 '09 at 22:04

7 Answers

up vote 623 down vote accepted

I was struggling with this same question myself, and found this page first... However, all the answers on here so far are useless. Either smug, nitpicking about your question, or too vague, or outright incorrect. The answers near the top contain mostly true statements, but haven't actually answered the question of what new does.


After a lot of searching, I have finally found out exactly what the new keyword does, and it is 3 things:

  1. It creates a new object. The type of this object, is simply object.
  2. It sets this new object's internal, inaccessible, [[prototype]] property to be the constructor function's external, accessible, prototype object.
  3. It executes the constructor function, using the newly created object whenever this is mentioned.

Once this is done, if an undefined property of the new object is requested, the script will check the object's [[prototype]] object for the property instead. This is how you can get something similar to traditional class inheritance in JavaScript.

The most difficult part about this is point number 2. Every object (including functions) has this internal property called [[prototype]] and there is NO way to access it. The only way to make an object have a particular [[prototype]] is by using the new keyword.

Functions, in addition to the hidden, [[prototype]] property also have a property called prototype, and it is this that you can access, and modify, to provide inherited properties and methods for the objects you make.


Here is an example:

ObjMaker = function() {this.a = 'first';};
// ObjMaker is just a function, there's nothing special about it that makes 
// it a constructor.

ObjMaker.prototype.b = 'second';
// like all functions, ObjMaker has an accessible prototype property that 
// we can alter. I just added a property called 'b' to it like 
// all objects, ObjMaker also has an inaccessible [[prototype]] property
// that we can't do anything with

obj1 = new ObjMaker();
// 3 things just happened
// A new, empty object was created called obj1.  At first obj1 was the same as {}
// The [[prototype]] property of obj1 was set to a copy of the prototype property
// of ObjMaker. The ObjMaker function was executed, with obj1 in place of this
// ...so   obj1.a was set to 'first'

obj1.a;
// returns 'first'
obj1.b;
// obj1 doesn't have a property called 'b', so JavaScript checks 
// its [[prototype]]. Its [[prototype]] is the same as ObjMaker.prototype
// ObjMaker.prototype has a property called 'b' with value 'second'
// returns 'second'

It's like class inheritance because now, any objects you make using new ObjMaker() will also appear to have inherited the 'b' property.

If you want something like a subclass, then you do this:

SubObjMaker = function () {};
SubObjMaker.prototype = new ObjMaker();
// Because we used 'new', the [[prototype]] property of SubObjMaker.prototype
// is now set to a copy of ObjMaker.prototype

SubObjMaker.prototype.c = 'third';  
obj2 = new SubObjMaker();
// [[prototype]] property of obj2 is now set to a copy of SubObjMaker.prototype
// Remember that the [[prototype]] property of SubObjMaker.prototype
// is a copy of ObjMaker.prototype with the additional c property defined
// So now obj2 has a prototype chain!
// obj2 ---> SubObjMaker.prototype ---> ObjMaker.prototype

obj2.c;
// returns 'third', from SubObjMaker.prototype

obj2.b;
// returns 'second', from ObjMaker.prototype

obj2.a;
// returns 'first', from SubObjMaker.prototype, because SubObjMaker.prototype 
// was created with the ObjMaker function, which assigned a for us

I read a ton of rubbish on this subject before finally finding this page, where this is explained very well with nice diagrams.

share|improve this answer
36  
Wow, more points for you good sir. This is one of the best answers on StackOverflow period. One minor quibble, I do not believe that it is correct to say the prototype of SubObjMaker is ObjMaker.prototype, rather it is a new instance of ObjMaker. If what you said was correct then any instances of ObjMaker would now have access to the 'c': third property. I could be wrong on this but I'm pretty sure that's the way it works. – George Mauer Nov 21 '10 at 21:08
1  
@daniel, +1 for goodness. How did you find out what new does? – hvgotcodes Jan 10 '11 at 20:56
8  
Just wanted to add: There is in fact a way to access the internal [[prototype]], by __proto__. This is however non-standard, and only supported by relatively new browsers (and not all of them). There is a standardized way coming up, namely Object.getPrototypeOf(obj), but it is Ecmascript3.1, and is itself only supported on new browers - again. It is generally recommended to not use that property though, stuff gets complicated real fast inside there. – Blub Apr 14 '11 at 14:55
5  
Question: what happens differently if ObjMaker is defined as a function that returns a value? – Jim Blackler Feb 27 '12 at 19:05
2  
@LonelyPixel new exists so that you don't have to write factory methods to construct/copy functions/objects. It means, "Copy this, making it just like its parent 'class'; do so efficiently and correctly; and store inheritance info that is accessible only to me, JS, internally". To do so, it modifies the otherwise inaccessible internal prototype of the new object to opaquely encapsulate the inherited members, mimicking classical OO inheritance chains (which aren't runtime modifiable). You can simulate this without new, but inheritance will be runtime modifiable. Good? Bad? Up to you. – Nick Wiggill Oct 23 '12 at 22:36
show 16 more comments

Suppose you have this function:

var Foo = function(){
  this.A = 1;
  this.B = 2;
};

If you call this as a standalone function like so:

Foo();

Executing this function will add two properties to the window object (A and B). It adds it to the window because window is the object that called the function when you execute it like that, and this in a function is the object that called the function. In Javascript at least.

Now, call it like this with new:

var bar = new Foo();

What happens when you add new to a function call is that a new object is created (just var bar = new Object()) and that the this within the function points to the new Object you just created, instead of to the object that called the function. So bar is now an object with the properties A and B. Any function can be a constructor, it just doesn't always make sense.

share|improve this answer
2  
+1. I was looking all over SO for this answer. – c4il Sep 27 '10 at 18:36
24  
You wrote document but you probably meant window. – Marko Dumic Mar 21 '12 at 14:04
Depends on execution context. In my case (Qt scripting) it's just a global object. – Maxym Jan 21 at 13:24

so it's probably not for creating instances of object

It's used exactly for that. You define a function constructor like so:

function person(name) {
this.name = name;
}

var john = new person('John');

However the extra benefit that ECMAScript has is you can extend with the .prototype property, so we can do something like...

person.prototype.getName = function() { return this.name; }

All objects created from this constructor will now have a getName because of the prototype chain that they have access to.

share|improve this answer
but there are no classes in JS! – Alon Gubkin Oct 29 '09 at 21:36
4  
function constructors are used like classes, there is no class keyword but you can pretty much do the same thing. – meder Oct 29 '09 at 21:37
There kindof is a class keyword - class is reserved for future use – Greg Oct 29 '09 at 21:41
6  
Incidentally that's why you use .className not .class to set a CSS class – Greg Oct 29 '09 at 21:41

JavaScript is an object-oriented programming language and it's used exactly for creating instances. It's prototype-based, rather than class-based, but that does not mean that it is not object-oriented.

share|improve this answer

Javascript is an object oriented language, and it use used for creating new instances of object.

Classes are not necessary for objects - Javascript is a prototype based language.

share|improve this answer

The new keyword is for creating new object instances. And yes, javascript is an object oriented programming language. The convention about the object naming is, always use capital letter for objects that are supposed to be instanted by the new keyword.

obj = new Element();
share|improve this answer

The new keyword creates instances of objects using functions as a constructor. For instance:

var foo = function() {
    return {};
};
var bar = new foo(); // returns an instance of an empty object.
share|improve this answer
1  
The new keyword basically associates the function as the constructor already; you don't need to return anything. You can just do: function foo(x) { this.bar = x; } var obj = new foo(10); alert(obj.bar); – reko_t Oct 29 '09 at 21:40
You need not return objects from constructor function unless you specifically want to, for a purpose. For example, if you have to return a specific object instance instead of creating a new object every time (for whatever reason). In your example, however, it is totally unnecessary. – Chetan Sastry Oct 29 '09 at 21:43
Well, it was an example. You can return an object. There's many patterns used in this scenario, I provided one as a "for instance", hence my words "for instance". – eyelidlessness Oct 29 '09 at 21:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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