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

JavaScript에서 한 줄 주석과 여러 줄 주석의 차이점은 무엇입니까?


한 줄 주석

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

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

여러 줄 주석

다음은 JavaScript의 여러 줄 주석입니다.

/*
   * This is a multiline comment in JavaScript
   * It is very similar to comments in C Programming
*/