The difference between JSON objects, JSON plain text, and JS objects:

Source: Internet
Author: User

The difference between JSON plain text and JS objects:

JSON object: Var jsonobject= {

"Name": "John Johnson",

"Street": "Oslo West 555",

"Age": 33,

"Phone": "555 1234567"};

typeof (Jsonobject) The result is: "Object"

JSON plain Text: is a string with JSON data format (plain text)

var txt = ' {' Employees ': [' +

' {' firstName ': ' John ', ' lastName ': ' Doe '}, ' +

' {' firstName ': ' Anna ', ' lastName ': ' Smith '}, ' +

' {' firstName ': ' Peter ', ' lastName ': ' Jones '}]} ';

typeof (TXT) Result: "String"

JSON plain text converted to JS object:

Var jsobj = eval ("(" + txt + ")")

The typeof (Jsobj) result is: "Object", you can use the syntax of the JSON object, and JSON plain text is the syntax that cannot use the JSON object

JS: Timer

id = setTimeout (performed behavior, 5000): Set timer, clear timer cleartimeout (ID)

id = setinterval ("Alert (' 1 ')", "$"), Clearinterval (ID). The specified period (in milliseconds) to invoke a function or evaluate an expression

The difference between JSON objects, JSON plain text, and JS objects:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.