JavaScript의 주석

JavaScript에는 JS 인터프리터에서 무시되는 텍스트 조각을 작성하는 방법이 있습니다. 이러한 텍스트를 주석이라고 합니다. 결국 단순히 무시된다면 왜 작성합니까? 인터프리터는 주석을 무시하지만 다른 개발자는 그렇지 않습니다. 주석을 사용하면 개발자가 코드를 더 읽기 쉽고 이해하기 쉽게 만들 수 있습니다.

JavaScript 언어는 한 줄 및 여러 줄의 두 가지 유형의 주석을 지원합니다. 좀 더 자세히 살펴보겠습니다.

한 줄 주석



한 줄만 차지하는 주석을 한 줄 주석이라고 합니다. 다음 주석의 구문적 특징을 주의 깊게 살펴보십시오.

console.log("Nice to see you!"); // This code outputs the message to the console


위의 예에서 // 이후의 모든 텍스트는 인터프리터에서 무시됩니다. 이러한 메모의 도움으로 특정 코드 조각을 마지막으로 본 지 오랜 시간이 지난 경우에도 해당 코드 조각의 용도를 빠르게 기억할 수 있습니다.

여러 줄 주석



여러 줄을 차지하는 주석을 여러 줄 주석이라고 합니다. 구문 기능은 다음과 같습니다.

/*
  The following code outputs the message to the console
  The console will display a line with the text "Hello, JS!"
*/
console.log("Hello, JS!");


인터프리터는 /* 와 가장 가까운 */ 사이의 모든 텍스트를 무시합니다. 이러한 주석은 특히 복잡한 코드 부분을 설명하거나 오류를 찾아야 할 때 일시적으로 코드 조각을 주석 처리하는 데 유용합니다. 또한 파일 시작 부분에 있는 여러 줄 주석은 저작권 정보를 지정해야 할 때 매우 유용합니다.

때로는 약간 수정된 여러 줄 메모 구문을 찾을 수 있습니다. 주석은 /** 태그로 열리고 각 줄은 *로 시작합니다.

/**
* The first program
* Author: Danish
*/
console.log("Hi, I'm Danish");


이러한 주석에는 이름, 버전 및 스크립트 작성자를 포함하여 프로그래밍 파일에 대한 정보가 포함되는 경우가 많습니다.

```일반 텍스트
JavaScript는 중첩 주석을 지원하지 않습니다. 즉, 다른 댓글 안에 댓글을 작성할 수 없습니다.




## Conclusion

Comments make your code more clear and help simplify the work of all those progrrammer who will work with your code in the future. Comments are also used to temporarily comment out code fragments when you need to find an error. In other words, you can really benefit from comments, so don't ignore them even though your JS interpreter will. Do not overuse comments, use them wisely, do not forget that comment can't replace well written code.

---

### Let's connect 💜

You can connect with me on [Twitter](https://twitter.com/MrDanishSaleem), [LinkedIn](https://linkedin.com/in/mrdanishsaleem), [GitHub](https://github.com/mrdanishsaleem/), [Discord](https://discord.com/users/890596597610737774/)

---

### Support me 🤝

You can support me on [Buy Me a Coffee](https://www.buymeacoffee.com/mrdanishsaleem)

좋은 웹페이지 즐겨찾기