A, {} curly brace, which means defining an object, in most cases a pair of properties and values, or a function. For example: var langshen = {"Name": "Langshen", "Age": "28"};
An object named "Langshen" is declared above, with multiple properties or functions separated by, (comma), because it is the property of the object,
So when you visit, you should use. (point) to layer access: Langshen.name, Langshen.age, of course, we can also use an array of ways to access, such as: langshen["Name"], langshen["age", the result is the same.
This notation, often used in JSON data structures, is often used when we write function groups, such as:
Copy CodeThe code is as follows: var langshen = {Name = function () {
return "Langshen"; }, age = function () {return "28";}}
It is called the same way, because it is a function group, so add (), such as: Alert (Langshen.name ());
two, [] brackets, which represent an array, can also be understood as an array object. such as: var langshen = ["Name", "Langshen", "Age", "28"];
Obviously, each value or function is independent, with multiple values separated by only, (comma), because it is an array object, so it equals: var Langshen = Array ("Name", "Langshen", "Age", "28"); When accessed, it is also an array of alert (langshen[0]);
Three, {} and [] with, as we said before, {} is an object, [] is an array, we can make up an array of objects, such as:
Copy CodeThe code is as follows: var langshen = {"Name": "Langshen",
"MyWife": ["LuLu", "26"],
"Myson": [{"Name": "Son1"},{"name": "Son2"},{"name": "Son3"}]}
From the structure above, the first item inside an object is a property, the second item is an array, and the third is an array containing multiple objects. Call up, is also a layer of access, the properties of the object with. (dot) overlay, array with [subscript] to access. such as: Alert (langshen.myson[1). Name);
In JavaScript {},[] brackets, curly braces are used