About 422,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 is mostly used as it is easier to read and comprehend. So why should we use bracket notation and what is the difference between then? well, the bracket notation [] allows …

  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 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 …

  5. 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:

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

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

  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 - What do square brackets (` [ (…) ]`) do inside an object ...

    What do square brackets (` [ (…) ]`) do inside an object literal in the position of an object key? Asked 10 years, 3 months ago Modified 1 year, 2 months ago Viewed 68k times

  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 …