Java 스크립트 튜토리얼-Hello World
이 자습서에서는 JavaScript 자습서의 시작점으로 JavaScript 에서 간단한 Hello World
프로그램을 수행합니다.
Java 스크립트 Hello World
<!DOCTYPE HTML>
<html>
<body>
<p>JavaScript Tutorial</p>
<script>
alert( 'Hello, world!' );
</script>
</body>
</html>
<script>
alert( 'Hello, world!' );
</script>
웹 페이지에 JavaScript 를 포함시킬 때는 항상 스크립트 태그<script> ... </ script>
에 포함시켜야합니다.
alert('Hello, world!');
괄호 안에 ‘Hello World!‘라는 정보가있는 경고 일뿐 아니라 세미콜론으로 끝납니다.
위의 코드를 helloworld.html
과 같은 파일에 저장 한 다음 브라우저에서 보면 Hello world!
라는 팝업 상자가 나타납니다.
기본 JavaScript 구문 규칙
JavaScript 를 계속 배우기 전에이 스크립팅 언어의 기본 구문 규칙을 얻어야합니다.
- JavaScript 는 대소 문자를 구분합니다. 변수와 함수 모두에 유효합니다.
- 각 문장은 세미콜론으로 끝납니다.
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