자바스크립트 JSON 형식의 예제 데이터

const jsonData = { “name”: “John Doe”, “age”: 30, “email”: “johndoe@example.com”, “address”: { “street”: “123 Main Street”, “city”: “New York”, “state”: “NY”, “zip”: “10001” }, “interests”: [“coding”, “reading”, “traveling”], “friends”: [ { “name”: “Jane Smith”, “email”: “janesmith@example.com” }, { “name”: “Mike Johnson”, “email”: “mikejohnson@example.com” } ] }; ```

The code above is an example of a JavaScript object written in the JSON format. It represents the data of a person named John Doe. The object has various properties such as name, age, email, and address, as well as nested objects like address and friends.

Some important points to note about this JSON data:

JSON (JavaScript Object Notation) is a lightweight data interchange format widely used in web development. It is easy to read and write for both humans and machines, making it a popular choice for representing and exchanging data in various APIs and data storage systems.