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 };
|
I'm learning JavaScript and while browsing through the jQuery library I see
| ||||
|
feedback
|
is functionally equivalent to
| |||||
feedback
|
|
Within the curled brackets (an object literal), the JSON.org has a good explanation and diagram of this:
| |||||||||
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:
A ternary operator could also be used to produce side effects just like if/then, but this is profoundly bad practice. | |||||||||||
feedback
|
|
And also, a colon can be used to label a statement. for example
| |||||
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:
and then use it like:
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.
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. | |||||||||
feedback
|
|
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:
| |||
|
feedback
|
|
Let's not forget the switch statement, where colon is used after each "case". | |||
|
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. | |||||||||||||
feedback
|
|
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 | |||||||
feedback
|