up vote 27 down vote favorite
7
share [g+] share [fb]

I'm learning JavaScript and while browsing through the jQuery library I see : being used a lot. What is this used for in JavaScript?

// Return an array of filtered elements (r)
// and the modified expression string (t)
   return { r: r, t: t };
link|improve this question

80% accept rate
feedback

9 Answers

up vote 44 down vote accepted
var o = {
    r: 'some value',
    t: 'some other value'
};

is functionally equivalent to

var o = new Object();
o.r = 'some value';
o.t = 'some other value';
link|improve this answer
2  
So similar to C# object initializer syntax. Thanks! – Micah Jan 7 '09 at 0:56
feedback

Within the curled brackets (an object literal), the : separates keys (or properties) from values.

JSON.org has a good explanation and diagram of this:

An object is an unordered set of name/value pairs. An object begins with { (left brace) and ends with } (right brace). Each name is followed by : (colon) and the name/value pairs are separated by , (comma).

alt text

link|improve this answer
3  
The only thing wrong with that diagram is that it says "string" instead of "name" - I realize that real JSON requires a string but it's not an accurate depiction of a real JavaScript object. – 999 Jan 7 '09 at 8:28
Actually, real JavaScript objects strictly use strings as property names. If you use a non-string variable as a property name, it will be cast to a string. This is true even for arrays: var a = [ 42 ]; for (var i in a) alert(typeof i); // will give you "string" – Ates Goral Oct 29 '09 at 3:02
JSON.org's diagram is a good explanation of JSON, not a good explanation of JavaScript object literals, because they are not the same thing. – nnnnnn Jun 28 '11 at 23:26
feedback

You guys are forgetting that the colon is also used in the ternary operator (though I don't know if jquery uses it for this purpose).

the ternary operator is an expression form (expressions return a value) of an if/then statement. it's used like this:

var result = (condition) ? (value1) : (value2) ;

A ternary operator could also be used to produce side effects just like if/then, but this is profoundly bad practice.

link|improve this answer
you mean A ternary operator? – micmoo Oct 29 '09 at 3:01
1  
AKA "ternary operator". Note that the OP is strictly asking about the object literal case. If we're to go even beyond what the OP is asking, the colon is also used in labels. – Ates Goral Oct 29 '09 at 3:06
1  
yes I did mean that. I should just stay off the internet, really, if i'm going to go around flagrantly mis-identifying programming concepts like that. – Breton Oct 29 '09 at 13:59
feedback

And also, a colon can be used to label a statement. for example

var i = 100, j = 100;
outerloop:
while(i>0) {
  while(j>0) {
   j++

   if(j>50) {
     break outerloop;
   }
  }
i++

}
link|improve this answer
5  
Oh noes! A GOTO in disguise!!! :) – Ates Goral Oct 29 '09 at 3:07
feedback

The ':' is a delimiter for key value pairs basically. In your example it is a Javascript Object Literal notation.

In javascript, Objects are defined with the colon delimiting the identifier for the property, and its value so you can have the following:

return { 
    Property1 : 125,
    Property2 : "something",
    Method1 : function() { /* do nothing */ },
    array: [5, 3, 6, 7]
};

and then use it like:

var o =  { 
    property1 : 125,
    property2 : "something",
    method1 : function() { /* do nothing */ },
    array: [5, 3, 6, 7]
};

alert(o.property1); // Will display "125"

A subset of this is also known as JSON (Javascript Object Notation) which is useful in AJAX calls because it is compact and quick to parse in server-side languages and Javascript can easily de-serialize a JSON string into an object.

// The parenthesis '(' & ')' around the object are important here
var o = eval('(' + "{key: \"value\"}" + ')');

You can also put the key inside quotes if it contains some sort of special character or spaces, but I wouldn't recommend that because it just makes things harder to work with.

Keep in mind that JavaScript Object Literal Notation in the JavaScript language is different from the JSON standard for message passing. The main difference between the 2 is that functions and constructors are not part of the JSON standard, but are allowed in JS object literals.

link|improve this answer
As I read your response I thought I would vote it up, but then you said that "It is also known as JSON". Object literals and JSON are definitely not the same thing, indeed your examples before you mention JSON are not valid JSON. – nnnnnn Jun 28 '11 at 23:25
@nnnnnn The difference between the 2 are very subtle, but important nonetheless. I've updated my answer to be more specific in regards to that. – Dan Herbert Jun 29 '11 at 15:58
1  
I see the update. Nice. Note that JSON requires that key names be in quotes. – nnnnnn Jun 30 '11 at 0:07
feedback

It is part of the object literal syntax. The basic format is:

var obj = { field_name: "field value", other_field: 42 };

Then you can access these values with:

obj.field_name; // -> "field value"
obj["field_name"]; // -> "field value"

You can even have functions as values, basically giving you the methods of the object:

obj['func'] = function(a) { return 5 + a;};
obj.func(4);  // -> 9
link|improve this answer
feedback

Let's not forget the switch statement, where colon is used after each "case".

link|improve this answer
feedback

That's JSON, or JavaScript Object Notation. It's a quick way of describing an object, or a hash map. The thing before the colon is the property name, and the thing after the colon is its value. So in this example, there's a property "r", whose value is whatever's in the variable r. Same for t.

link|improve this answer
2  
JSON is only a subset of JavaScript object initialization syntax. '{ a: k() }' where k is a function is not JSON, but it is perfectly fine JavaScript object initialization syntax. – yfeldblum Jan 7 '09 at 0:59
6  
To be pedantic, no, it's not "JSON". It looks like JSON. It's the object literal syntax that is native to JavaScript and that can appear directly inside code. JSON on the other hand is a data serialization/interchange format. JSON is JSON only when it's "airborne", i.e. in transit or when it's not yet parsed into a real object. – Ates Goral Oct 29 '09 at 3:10
1  
+1 for Ates Goral, but note that the example given doesn't even look like JSON: the names would have to be in double-quotes for it to be valid JSON syntax. – NickFitz Oct 29 '09 at 14:03
feedback

Just thought I'd mention that another use of the colon is to assign data types to variables -

var s : String;

means that the variable s is of type String

link|improve this answer
JavaScript is loosely typed. It is not possible to declare a variable as being of a particular type in JavaScript, so your variable declaration is not valid JavaScript. – Luke Girvin Jun 16 '11 at 10:32
1  
That's ActionScript, which looks very similar to Javascript. As @Luke Girvin points out, that syntax will cause syntax errors in browsers expecting Javascript. – Dave Aaron Smith Aug 16 '11 at 15:01
feedback

Your Answer

 
or
required, but never shown

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