Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 한 줄 주석을 어떻게 사용합니까?

<시간/>

다음은 JavaScript의 한 줄 주석입니다. //와 줄 끝 사이의 모든 텍스트는 주석으로 처리되며 JavaScript에서 무시됩니다.

// This is a comment. It is similar to comments in C++

JavaScript에서 한 줄 주석을 사용하는 방법을 보여주는 다음 예.

<script>
   <!--
      // This is a comment. It is similar to comments in C++
   //-->
</script>