JSON
text-based open standard designed for human-readable data interchange
🌐
Wikipedia
en.wikipedia.org › wiki › JSON
JSON - Wikipedia
March 6, 2005 - JSON (JavaScript Object Notation, pronounced /ˈdʒeɪsən/ or /ˈdʒeɪˌsɒn/) is an open standard file format and data interchange format that uses human-readable text to store and transmit data objects consisting of name–value pairs and arrays (or other serializable values).
🌐
Oracle
oracle.com › ai database
Here’s Why JSON Rules the Web
April 4, 2024 - JSON (JavaScript Object Notation) is a text-based format for storing and exchanging data in a way that’s both human-readable and machine-parsable. As a result, JSON is relatively easy to learn and to troubleshoot.
Discussions

Can someone please explain JSON to me?
JSON is derived from JavaScrtipt (JavaScript Object Notation) and is just the format using key value pairs. Values can be booleans, strings, numbers, arrays or objects. That's all it is. More on reddit.com
🌐 r/learnjavascript
88
56
November 24, 2023
@m6oss/schema-form: JSON Schema goes in, full form comes out. Headless (doesn't force a UI library on you), extensible, and as simple or as complex as you want it to be
Looks like you made a typo in the link you submitted... I found the package at https://www.npmjs.com/package/@m6oss/schema-form . More on reddit.com
🌐 r/reactjs
21
20
April 28, 2024
What does JSON stand for?
Hi! This is our community moderation bot. If this post fits the purpose of r/ProgrammerHumor , UPVOTE this comment!! If this post does not fit the subreddit, DOWNVOTE This comment! If this post breaks the rules, DOWNVOTE this comment and REPORT the post! More on reddit.com
🌐 r/ProgrammerHumor
219
4832
April 16, 2022
What is JSON and what does it have to do with Javascript?
I notice it's an acronym "JavaScript Object Notation" so obviously has lots to do with Javascript, but apparently it's also " a language-independent data format." (whatever that means). It means that the syntax of JSON is based on the way you construct objects in JavaScript, but it exists independently from JS. It's a data exchange format. Similar to XML. It's just a way to use text to structure data. JSON isn't a language that really requires proficiency. For one thing, it's not a programming language; it doesn't convey logic. It's just data. And it's quite simple. There are only four data types in JSON: string, number, array, and object. Whether or not you have to be proficient with it to use WebSockets? Technically they aren't directly related. But JSON is an extremely common format to pass data over WebSockets (as well as HTTP endpoints as well). More on reddit.com
🌐 r/learnprogramming
11
0
March 31, 2022
🌐
W3Schools
w3schools.com › whatis › whatis_json.asp
What is JSON
What is Fullstack What is Fullstack ... Polly What is AWS Pinpoint · ❮ Previous Next ❯ · JSON · JSON stands for JavaScript Object Notation · JSON is a lightweight format for storing and transporting data ·...
🌐
Amazon Web Services
aws.amazon.com › databases › amazon documentdb › what is json
What is JSON? - JSON Explained - AWS
6 days ago - JavaScript Object Notation (JSON) is an open data interchange format that is both human and machine-readable.
🌐
GeeksforGeeks
geeksforgeeks.org › javascript › json-full-form
JSON Full Form - GeeksforGeeks
July 12, 2025 - It is a popular data interchange format used in many applications and technology stacks. JSON is easy for both humans and machines to read. It is not tied to any specific programming language and can be combined with C++, Java, and Python. It represents data structures rather than being a full markup language like XML.
🌐
Reddit
reddit.com › r/learnjavascript › can someone please explain json to me?
r/learnjavascript on Reddit: Can someone please explain JSON to me?
November 24, 2023 -

I've never worked with any DB or back-end, etc stuff, but I am in need of some sort of data storage. I'm working on a javascript application that will only be run on my pc, offline, and I need to be able to save information. I don't want to rely on localStorage because if the browser history is wiped then all the data goes with it.

While searching for a way to collect and store info, I read about JSON, and it sounded like what I was looking for--and yet I've spent the last 4 hours watching tutorials and so far all I know about it is it's fching JS. I sat through a 12 minute video where all the guy did was write out an object in json and then copy and paste into a js file and said "now you know how to use json in all your future projects" 🙄 like what in ACTUAL fk. You could have just WROTE that in js. What's the point of JSON? Everything I've seen or read is practically just the same as this video.

DOES json collect and store data?

Like, if I put an input form in my app, and type a name and hit submit, can I make that Input hardcode into the json file to be saved forevermore and called upon when I needed in this app? Because that's what I need. Any explanation or help on this would be GREATLY appreciated.

Find elsewhere
🌐
JSON
json.org
JSON
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 subset of the JavaScript Programming Language Standard ECMA-262 3rd Edition - December 1999.
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Learn_web_development › Core › Scripting › JSON
Working with JSON - Learn web development | MDN
JavaScript Object Notation (JSON) is a standard text-based format for representing structured data based on JavaScript object syntax. It is commonly used for transmitting data in web applications (e.g., sending some data from the server to the client, so it can be displayed on a web page, or ...
🌐
MongoDB
mongodb.com › resources › languages › what-is-json
What Is JSON? | A Beginner’s Guide | MongoDB
JS is the abbreviation for JavaScript and not JSON. JavaScript is a programming language used for building the user interface of a web application, whereas JSON is a data interchange format used for transferring data between front end and back end.
🌐
LOC
loc.gov › preservation › digital › formats › fdd › fdd000381.shtml
JSON (JavaScript Object Notation)
Format Description for JSON -- JSON is a lightweight, text-based, language-independent data interchange format. It was derived from the JavaScript/ECMAScript programming language, but is programming language independent. JSON defines a small set of structuring rules for the portable representation ...
🌐
W3Schools
w3schools.com › js › js_json.asp
W3Schools.com
JSON is a plain text format for storing and transporting data.
🌐
MongoDB
mongodb.com › resources › basics › json-and-bson
JSON And BSON | MongoDB
BSON is the binary-encoded serialization of JSON data. While JSON string is human-readable, BSON needs to be parsed. BSON gives the additional benefits of having more data types, being lightweight and traversable, and storing data more efficiently.
🌐
Code Institute
codeinstitute.net › blog › coding › what is json? a guide
What is JSON? Definitions & Examples - Code Institute Global
October 20, 2022 - JSON (JavaScript Object Notation) is a data format designed to be easily readable by people and computers. This guide tells you more.
🌐
DataCamp
datacamp.com › tutorial › json-data-python
Python JSON Data: A Guide With Examples | DataCamp
December 3, 2024 - JSON (JavaScript Object Notation) is a lightweight data-interchange format that has become a popular choice for data exchange in many programming languages, including Python. With its simple syntax and ability to represent complex data structures, JSON has become an integral part of modern ...
🌐
Testbook
testbook.com › home › full form › json full form
JSON Full Form: What is JavaScript Object Notation
JSON Full Form stands for JavaScript Object Notation, a lightweight data-interchange format used to store and exchange structured data. It is easy to read and write
🌐
BYJUS
byjus.com › full-form › json-full-form
JSON Full Form
October 19, 2022 - The full form of JSON is JavaScript Object Notation. It is a text-based open standard data interchange setup and only provides a data encoding specification.
🌐
Stack Overflow
stackoverflow.blog › 2022 › 06 › 02 › a-beginners-guide-to-json-the-data-format-for-the-internet
A beginner's guide to JSON, the data format for the internet - Stack Overflow
That’s where JSON (JavaScript Object Notation) comes in. If you’ve consumed an API in the last five to ten years, you’ve probably seen JSON data. While the format was first developed in the early 2000s, the first standards were published ...
🌐
TheServerSide
theserverside.com › definition › JSON-Javascript-Object-Notation
What is JSON? - Definition from TechTarget.com
JSON (JavaScript Object Notation) is a text-based, human-readable data interchange format used to exchange data between web clients and web servers. The format defines a set of structuring rules for the representation of structured data.
🌐
Codecademy
codecademy.com › article › what-is-json
What Is JSON? | Codecademy
Fortunately for us, there exists such a data-exchange format. JSON, or JavaScript Object Notation, is a popular, language-independent, standard format for storing and exchanging data.