About 11,800,000 results
Open links in new tab
  1. What is JSON and what is it used for? - Stack Overflow

    679 JSON (JavaScript Object Notation) is a lightweight format that is used for data interchanging. It is based on a subset of JavaScript language (the way objects are built in JavaScript). As …

  2. javascript - JSON.stringify returns " [object Object]" instead of the ...

    May 11, 2013 · Here I'm creating a JavaScript object and converting it to a JSON string, but JSON.stringify returns " [object Object]" in this case, instead of displaying the contents of the …

  3. How to escape special characters in building a JSON string?

    Nov 29, 2016 · A JSON string must be double-quoted, according to the specs, so you don't need to escape '. If you have to use special character in your JSON string, you can escape it using \ …

  4. How to read an external local JSON file in JavaScript?

    Learn how to read an external local JSON file in JavaScript using different methods and techniques.

  5. What is BSON and exactly how is it different from JSON?

    Nov 29, 2017 · BSON is the binary encoding of JSON-like documents that MongoDB uses when storing documents in collections. It adds support for data types like Date and binary that aren't …

  6. How to make a class JSON serializable - Stack Overflow

    Sep 22, 2010 · It's unfortunate that the answers all seem to answer the question "How do I serialize a class?" rather than the action question "How do I make a class serializable?" These …

  7. Is there any standard for JSON API response format?

    Do standards or best practices exist for structuring JSON responses from an API? Obviously, every application's data is different, so that much I'm not concerned with, but rather the "response

  8. What is the "right" JSON date format? - Stack Overflow

    If you have control over the generated json, for example, you provide data to other systems in json format, choosing 8601 as the date interchange format is a good choice.

  9. How to parse JSON in Java - Stack Overflow

    This Stack Overflow page explains how to parse JSON in Java.

  10. Are multi-line strings allowed in JSON? - Stack Overflow

    Is it possible to have multi-line strings in JSON? It's mostly for visual comfort so I suppose I can just turn word wrap on in my editor, but I'm just kinda curious. I'm writing some data files in ...