From 58c42b8579df8e05bb44021afb69811aabe1b9f0 Mon Sep 17 00:00:00 2001 From: HoJeong Im <39ghwjd@naver.com> Date: Sun, 8 Oct 2023 12:58:20 +0900 Subject: [PATCH] [ko]: add index.md for `web/glossary/strict_mode` (#16355) [add]: add index.md for web/glossary/strict_mode --- files/ko/glossary/strict_mode/index.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 files/ko/glossary/strict_mode/index.md diff --git a/files/ko/glossary/strict_mode/index.md b/files/ko/glossary/strict_mode/index.md new file mode 100644 index 00000000000000..9884e7fd00cbb6 --- /dev/null +++ b/files/ko/glossary/strict_mode/index.md @@ -0,0 +1,19 @@ +--- +title: 엄격 모드 (Strict mode) +slug: Glossary/Strict_mode +l10n: + sourceCommit: ada5fa5ef15eadd44b549ecf906423b4a2092f34 +--- + +{{GlossarySidebar}} + +JavaScript의 **엄격 모드(strict mode)** 는 제한된 JavaScript 변형을 선택하여 {{Glossary("Sloppy_mode", "느슨한 모드")}}를 암시적으로 거부하는 방법입니다. 엄격 모드는 그냥 부분 집합이 아니며, 의도적으로 일반 코드와 다른 의미론을 가지고 있습니다. + +전체 스크립트에 대한 엄격 모드는 다른 문 앞에 `"use strict";` 문을 포함하여 호출됩니다. + +## 같이 보기 + +- [엄격 모드](/ko/docs/Web/JavaScript/Reference/Strict_mode) +- [용어 사전](/ko/docs/Glossary) + + - {{Glossary("Sloppy mode")}}