일반적으로 주석은 코드를 읽기 쉽게 만들기 위한 목적으로 사용된다. 브라우저는 주석은 해석하지 않는다.
줄단위의 주석을 위해서는 //를 사용한다. 브라우저는 // 을 만나면 그 뒤의 텍스트는 해석하지 않는다.
<script type="text/javascript">
// This will write a header:
document.write("<h1>This is a header</h1>");
// This will write two paragraphs:
document.write("<p>This is a paragraph</p>"); // 여기서 부터는 주석으로 처리된다.
document.write("<p>This is another paragraph</p>");
</script>
다중라인 주석
한번에 여러개의 라인을 주석처리 할때는 /* 와 */ 를 사용한다.
<script type="text/javascript">
/*
The code below will write
one header and two paragraphs
*/
document.write("<h1>This is a header</h1>");
document.write("<p>This is a paragraph</p>");
document.write("<p>This is another paragraph</p>");
</script>
JavaScript 주석
다중라인 주석
Recent Posts
Archive Posts
Tags