What is JSON
JSON: JavaScript Object Notation.
The format of JSON is a list of items surrounded by curly brackets "{}", each item is separated by a comma (,), and the item is the attribute name and attribute value separated by a colon (:). This is a typical dictionary representation, and it once again shows that objects in JavaScript are dictionary structures. No matter how complex the object is, it can be created and assigned with a JSON code.
JSON structure
JSON has two structures
Json simply means objects and arrays in JavaScript, so these two structures are objects and arrays. Various complex structures can be expressed through these two structures
1. Object: The object is represented in js as the content enclosed by "{}". The data structure is the key-value pair structure of {key: value, key: value,...}. In object-oriented language , key is the attribute of the object, and value is the corresponding attribute value, so it is easy to understand. The value method is object.key to obtain the attribute value. The type of this attribute value can be numbers, strings, arrays, and objects.
2. Array: Array in js is the content enclosed by brackets "[]", the data structure is ["java", "javascript", "vb",...], the value method and all languages Same as in, using index to obtain, the type of field value can be number, string, array, object.
Through the two structures of objects and arrays, complex data structures can be combined.
JSON syntax rules
JSON syntax is a subset of JavaScript Object Notation syntax.
Data in name/value pairs
Data separated by commas
Curly braces save objects
Square brackets save arrays
JSON value can be:
Number (integer or floating point)
String (in double quotes)
Logical value (true or false)
Array (in square brackets)
Object (in curly braces)
null
1) Parallel data are separated by commas (", ").
2) Mapping is represented by colon (": ").
3) The collection (array) of parallel data is represented by square brackets ("[]").
4) The mapped collection (object) is represented by curly brackets ("{}").
JSON example
Create an object without any properties:
var obj = {};
Create an object and set properties and initial values:
var author = {name: "trigkit4", age: 21, sex: "male"};
Create an object and set properties and methods:
var hello ={content:"how are you?" , say :function(){alert(this.content)} };
Create a nested array of other objects, objects, etc.:
var company = {name:"Apple",
Product: "iPPhone",
Chairman:{name:"Tim Cook",age:54},
Employees:[{name:"Jony Ive",age:47},{name:"Lili",age:29}],
};
An object is an unordered set of name/value pairs. An object starts with the left branch and ends with the right branch
A value can be a string enclosed in double quotes, or a numeric value, a true or false, an array or an object
Data type:
From a structural point of view, all data can ultimately be decomposed into three types:
The first type is scalar, which is a single string or numbers, such as the single word "Beijing".
The second type is sequence, that is, several related data are arranged together in a certain order, also called array or list, such as "Beijing, Shanghai".
The third type is mapping, which is a name/value pair, that is, the data has a name and a corresponding value, which is also called hash. ) or dictionary, such as "Capital: Beijing".
In programming languages, as long as there are arrays and objects, all data can be stored.
Another difference between arrays and objects is that array data does not have a "name", while object data has a "name".
There are 5 simple data types (also called basic data types) in JavaScript: Undefined, Null, Boolean, Number and String. There is also a complex data type - Object. Object is essentially composed of a set of unordered name-value pairs.
Using the typeof operator on a value may return one of the following strings:
● "undefined" - if the value is undefined;
● "boolean" - if the value is a Boolean value;
● "string" - if the value is a string;
● "number" - if the value is a numerical value;
● "object" - if the value is an object or null;
● "function" - if the value is a function;
Undefined type:
The `Undefined` type has only one value. When using var to declare a variable but not initialize it,
The value of this variable is undefined
Null type
The Null type is the second data type with only one value, and this special value is null. From a logical point of view, the null value represents a null object pointer, and this is why "object" is returned when using the typeof operator to detect null, for example:
var car = null;
alert(typeof car); // "object"
Number type
This type is used to represent integers and floating-point values, and there is also a special value, NaN (Not a Number). This value is used to indicate that an operand that is supposed to return a value does not return a value (so that an error is not thrown).
String type
The String type is used to represent a character sequence consisting of zero or more 16-bit Unicode characters, that is, a string. Strings can be represented by single quotes (') or double quotes (").
Numeric, Boolean, object and string values all have toString() method. But null and undefined values do not have this method.
In most cases, there is no need to pass parameters when calling the toString() method. However, when calling the toString() method of a value, you can pass a parameter: the base of the output value.
var num = 10;
alert(num.toString()); //"10"
alert(num.toString(2)); //"1010"
alert(num.toString(8)); //"12"
alert(num.toString(10)); //"10"
alert(num.toString(16)); //"a"
When you don’t know whether the value to be converted is null or undefined, you can also use the conversion function String(). This function can convert any type of value into a string. The String() function follows the following conversion rules:
● If the value has a toString() method, call this method (without parameters) and return the corresponding result
● If the value is null, return "null"
● If the value is undefined, return "undefined"
Object type
An object is actually a collection of data and functions. Objects can be created by executing the new operator followed by the name of the type of object to be created. You can create a custom object by creating an instance of the Object type and adding properties and/or methods to it.
var o = new Object();
typeof operator
Json online parsing
Json online analysis: http://json.tongxiehui.net/

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version
Chinese version, very easy to use
