I'm learning javascript and while browsing throught the JQuery library I see ':' being used alot. 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 };
|
2
|
I'm learning javascript and while browsing throught the JQuery library I see ':' being used alot. What is this used for in javascript?
|
||
|
|
|
|
is functionally equivalent to
|
||
|
|
|
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. |
||||||||||
|
|
|
Within the curled brackets (an object literal), the JSON.org has a good explanation and diagram of this:
|
||||||
|
|
|
It is part of the object literal syntax. The basic format is:
Then you can access these values with:
You can even have functions as values, basically giving you the methods of the object:
|
||
|
|
|
|
The ':' is a delimiter for key value pairs basically. In your example it is a Javascript Object notation. In javascript, Objects are defined with the colon delimiting the identifier for the property, and its value so you can have the following:
and then use it like:
It 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 like:
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. |
||
|
|
|
|
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:
A ternary operator could also be used to produce side effects just like if/then, but this is profoundly bad practice. |
||||||
|
|
|
And also, a colon can be used to label a statement. for example
|
|||
|
|
|
Just thought I'd mention that another use of the colon is to assign data types to variables -
means that the variable s is of type String |
||
|
|