diff options
Diffstat (limited to 'files/ko/glossary/identifier/index.html')
-rw-r--r-- | files/ko/glossary/identifier/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/files/ko/glossary/identifier/index.html b/files/ko/glossary/identifier/index.html new file mode 100644 index 0000000000..f306315b66 --- /dev/null +++ b/files/ko/glossary/identifier/index.html @@ -0,0 +1,21 @@ +--- +title: 식별자 +slug: Glossary/식별자 +tags: + - Beginner + - Glossary +translation_of: Glossary/Identifier +--- +<p><strong>식별자</strong>는 코드 내의 {{glossary("variable", "변수")}}, {{glossary("function", "함수")}}, 혹은 {{glossary("property", "속성")}}을 식별하는 문자열입니다.</p> + +<p>{{glossary("JavaScript")}}의 식별자는 대소문자를 구별하며 {{glossary("Unicode", "유니코드")}} 글자, <code>$</code>, <code>_</code>, 숫자(0-9)로 구성할 수 있지만, 숫자로 시작할 수는 없습니다.</p> + +<p>식별자는 코드의 일부이지만 문자열은 데이터이기 때문에, 식별자와 문자열은 다릅니다. JavaScript에서 식별자를 문자열로 변환하는 방법은 없지만, 어떤 경우 문자열을 분석해 식별자로 사용할 수 있습니다.</p> + +<h2 id="더_알아보기">더 알아보기</h2> + +<h3 id="일반_지식">일반 지식</h3> + +<ul> + <li>위키백과 {{interwiki("wikipedia", "식별자#컴퓨터_과학", "식별자")}}</li> +</ul> |