-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ko] modified: 'glossary/json' update and translate (#14444)
* modified: glossary_json update and translate * add: meta data(l10n.sourceCommit) * fix: 같이 보기 문서 연결 링크 'ko'로 변경
- Loading branch information
Showing
1 changed file
with
5 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,15 @@ | ||
--- | ||
title: JSON | ||
slug: Glossary/JSON | ||
l10n: | ||
sourceCommit: ada5fa5ef15eadd44b549ecf906423b4a2092f34 | ||
--- | ||
|
||
_JavaScript Object Notation_ (**JSON**) 은 데이터 교환 형식의 일종입니다. Although not a strict subset, JSON closely resembles a subset of {{Glossary("JavaScript")}} syntax. Though many programming languages support JSON, JSON is especially useful for JavaScript-based apps, including websites and browser extensions. | ||
_JavaScript Object Notation_ (**JSON**) 은 데이터 교환 형식의 일종입니다. 엄격한 부분 집합은 아니지만, JSON은 {{Glossary("JavaScript")}} 구문과 매우 유사합니다. 많은 프로그래밍 언어가 JSON을 지원하지만, 웹 사이트와 브라우저 확장기능을 포함한 JavaScript 기반 앱에 특히 유용합니다. | ||
|
||
JSON can represent numbers, booleans, strings, `null`, arrays (ordered sequences of values), and objects (string-value mappings) made up of these values (or of other arrays and objects). JSON does not natively represent more complex data types like functions, regular expressions, dates, and so on. (Date objects by default serialize to a string containing the date in ISO format, so the information isn't completely lost.) If you need JSON to represent additional data types, transform values as they are serialized or before they are deserialized. | ||
JSON은 숫자, 불리언, 문자열, `null`, 배열(순서가 지정된 값) 및 객체(문자열 값 매핑)로 구성된 값(또는 다른 배열 및 객체)을 표현할 수 있습니다. JSON은 함수, 정규 표현식, 날짜 등과 같은 더 복잡한 데이터 타입을 기본적으로 표현하지 않습니다. (Date 객체는 기본적으로 ISO 형식의 날짜를 포함하는 문자열로 직렬화되므로 정보가 완전히 손실되지 않습니다.) 추가적인 데이터 타입을 표현하기 위해 JSON이 필요하다면, 직렬화되거나 역직렬화되기 전에 값을 변환하세요. | ||
|
||
Much like XML, JSON has the ability to store hierarchical data unlike the more traditional CSV format. Many tools provide translation between these formats such as this online [JSON to CSV Converter](https://json-csv.com) or this alternative [JSON to CSV Converter](https://jsontoexcel.com). | ||
|
||
## Learn more | ||
|
||
### General knowledge | ||
## 같이 보기 | ||
|
||
- [JSON](https://ko.wikipedia.org/wiki/JSON) on Wikipedia | ||
|
||
### Technical reference | ||
|
||
- [JSON](/ko/docs/Web/JavaScript/Reference/Global_Objects/JSON) on MDN |