Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ko]: add index.md for web/glossary/serialization #16309

Merged
merged 1 commit into from
Oct 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions files/ko/glossary/serialization/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: 직렬화 (Serialization)
slug: Glossary/Serialization
l10n:
sourceCommit: ada5fa5ef15eadd44b549ecf906423b4a2092f34
---

{{GlossarySidebar}}

객체나 데이터 구조를 네트워크나 저장소(예, 배열 버퍼 또는 파일 형식)를 통한 전송에 적합한 형식으로 변환하는 프로세스입니다.

예를 들어, {{Glossary("JavaScript")}}에서는 {{Glossary("function", "함수")}} {{jsxref("JSON.stringify()")}}를 호출하는 것을 통해 객체를 {{Glossary("JSON")}} {{Glossary("string", "문자열")}}로 직렬화할 수 있습니다.

{{Glossary("CSS")}} 값은 {{domxref("CSSStyleDeclaration.getPropertyValue()")}} 함수를 호출하여 직렬화됩니다.

## 같이 보기

- 위키백과의 [직렬화](https://en.wikipedia.org/wiki/Serialization)