Java 스크립트 튜토리얼-진술 및 의견
이 튜토리얼에서는 문장과 주석에 대해 배웁니다.
JavaScript 문장이란 무엇입니까?
명령문은 컴퓨터에 제공된 지시 사항입니다. JavaScript 뿐만 아니라 모든 프로그래밍 언어가 일반적인 프로그래밍 언어로 작동하는 방식입니다.
명령문 끝의 세미콜론;
은 이것이 명령문의 끝임을 의미합니다. JavaScript 로 문장을 작성할 때마다 세미콜론으로 문장을 끝내고 그 뒤에 오는 것은 완전히 새로운 문장입니다.
<!DOCTYPE HTML>
<html>
<body>
<p>JavaScript Tutorial</p>
<script>
document.write("Test string.")
alert( 'Hello, world!' );
</script>
</body>
</html>
document.write('Test string.')
첫 번째 문장은 웹 페이지에 텍스트 Test string
을 씁니다.
alert('Hello, world!');
이 문장은 Hello, world!
라는 경고 메시지 상자를 띄웁니다.
Java 스크립트 주석
주석은 프로그래밍 언어의 자신이나 다른 프로그래머에게주는 메모와 같습니다. 코드에 주석을 유지하는 것이 좋습니다.
statement; // this is a comment
몇 주 후에 코드가 실제로하는 일을 잊어 버릴 수 있으므로 주석을 남겼다면 스스로 기억하는 데 도움이 될 수 있기 때문에 항상 코드에 표시된대로 주석을 남겨 두어야합니다. 또한 다른 프로그래머가 코드를 보면 주석없이 수행중인 작업을 정확하게 이해하지 못할 수 있습니다.
새로운 줄로 나누면 여기에 쓴 내용은 더 이상 주석 처리되지 않습니다.
JavaScript 여러 줄 주석
주석이 길면 여러 줄로 나누려면 여러 줄 주석을 남겨야합니다.
/*
Anything in between is
commented out.
*/
Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.
LinkedIn Facebook