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

    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).

  2. JavaScript property access: dot notation vs. brackets?

    The dot notation and bracket notation both are used to access the object properties in JavaScript. The dot notation is mostly used as it is easier to read and comprehend.

  3. What is the difference between JSON and Object Literal Notation?

    The JSON language, which stands for 'Javascript object notation', has its syntax derived from javascript object literal syntax. It is used as a programming language independent textual data …

  4. javascript - How to convert a string in dot notation into an object ...

    If you want to convert a string dot notation into an object, I've made a handy little helper than can turn a string like a.b.c.d with a value of e with dotPathToObject("a.b.c.d", "value") returning this:

  5. JavaScript object vs. JSON - Stack Overflow

    However, because we've stringified the object into JSON notation; i.e., a standardised way to represent data, we can transmit the JSON representation of the object to another language …

  6. javascript - What is the difference between `new Object ()` and …

    But literal notation takes less space in the source code. It's clearly recognizable as to what is happening, so using new Object(), you are really just typing more and (in theory, if not …

  7. Access object child properties using a dot notation string

    Nov 8, 2011 · Access object child properties using a dot notation string [duplicate] Asked 14 years, 1 month ago Modified 3 years, 8 months ago Viewed 88k times

  8. javascript - Accessing an object property with a dynamically …

    See also property access: dot notation vs. brackets? and How do I add a property to an object using a variable as the name?

  9. javascript - Convert JS object to JSON string - Stack Overflow

    Nov 12, 2010 · 1 So in order to convert a js object to JSON String: The simple syntax for converting an object to a string is

  10. What is the JSON format? - Stack Overflow

    48 JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a …