About 214,000 results
Open links in new tab
  1. JavaScript JSON - W3Schools

    JSON is a format for storing and transporting data. JSON is often used when data is sent from a server to a web page. What is JSON? * The JSON syntax is derived from JavaScript object …

  2. JavaScript JSON - GeeksforGeeks

    May 1, 2025 · JSON (JavaScript Object Notation) is a lightweight data format for storing and exchanging data. It is widely used to send data between a server and a client. JSON is simple, …

  3. JSON - JavaScript | MDN - MDN Web Docs

    JSON is a syntax for serializing objects, arrays, numbers, strings, booleans, and null. It is based upon JavaScript syntax, but is distinct from JavaScript: most of JavaScript is not JSON. For …

  4. What is JSON and what is it used for? - Stack Overflow

    JavaScript Object Notation (JSON) is a lightweight data-interchange format inspired by the object literals of JavaScript. JSON values can consist of: objects (collections of name-value pairs) …

  5. JavaScript and JSON (with Examples) - Programiz

    JSON stands for Javascript Object Notation. JSON is a text-based data format that is used to store and transfer data. For example, "name": "John", "age": 22, "gender": "male", In JSON, …

  6. JSON for Beginners – JavaScript Object Notation Explained in …

    Nov 29, 2021 · In this article, you will learn all about JSON. You'll understand what it is, how to use it, and we'll clarify a few misconceptions. So, without any further delay, let's get to know …

  7. What Is JSON and How Do You Use It? - How-To Geek

    JSON (JavaScript Object Notation) is a standardized format for representing structured data. Although JSON grew out of the JavaScript programming language, it's now an ubiquitous …

  8. What Is JSON? Syntax, Examples + Cheat Sheet - Hostinger

    Apr 28, 2025 · JSON (JavaScript Object Notation) is a text-based file format designed for data interchange. It represents structured data based on the JavaScript object syntax. Because of …

  9. Working with JSON - Learn web development | MDN - MDN Web Docs

    Apr 29, 2025 · JSON is a text-based data format following JavaScript object syntax. It represents structured data as a string, which is useful when you want to transmit data across a network. …

  10. JSON Explained – What is JSON (JavaScript Object Notation)?

    Jun 26, 2021 · JSON, which stands for JavaScript Object Notation, is a text-based data interchange format that’s based on JavaScript object syntax. We’ve briefly touched on JSON …