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

    Apr 16, 2023 · 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. What is the difference between JSON and Object Literal Notation?

    JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format. JSON has been used to exchange data between applications written in any Programming …

  3. 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 (C++, PHP), they …

  4. 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 us to access …

  5. Difference between using bracket (`[]`) and dot (`.`) notation

    Accessing members with . is called dot notation. Accessing them with [] is called bracket notation. The dot notation only works with property names which are valid identifier names [spec], so basically any …

  6. Javascript Object Notation Vs JSON Object - Stack Overflow

    May 7, 2016 · JSON is a data interchange format equivalent in syntax to JavaScript-the-language's object notation. With your above statement you create an object named myObject used in a running …

  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, 3 months ago Modified 3 years, 10 months ago Viewed 88k times

  8. O que é JSON? Para que serve e como funciona? - Stack Overflow em ...

    Feb 4, 2014 · 22 JSON é um acrônimo para "JavaScript Object Notation", é um formato leve para intercâmbio de dados computacionais. JSON é um subconjunto da notação de objeto de JavaScript, …

  9. javascript - What is the difference between `new Object ()` and object ...

    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 optimized out by the …

  10. javascript - Accessing an object property with a dynamically-computed ...

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