Link Search Menu Expand Document

JavaScript Statement

Table of contents

  1. Statement Basic
    1. JavaScript Statement
  2. Features of Statement
    1. Semicolons ; and Space
    2. White Space
    3. Line Breaks
    4. Code Blocks
    5. Keywords

Statement Basic

문장

컴퓨터 프로그램은 컴퓨터에 의해 “지침”들이 “실행”할 목록

프로그래밍 언어에서 이러한 프로그래밍 명령어(instructions)를 statement 이라고 함

자바스크립트 프로그램은 프로그래밍 statements 목록 (자바스크립트 코드라고도 불림)

표현식(Expressions)과 다른 개념임!

JavaScript Statement

지시문 구성물 : Values, Operators, Expressions, Keywords, Comments

▸ 실행문은 하나하나 순서대로 진행함

예제

document.getElementById("demo").innerHTML = "Hello Dolly.";

Features of Statement

Semicolons ; and Space

문장을 구분하는 역할

▸ 별도의 자바스크립트 문

▸ ;는 자바스크립트에서 꼭 필요하진 않지만 다른 언어에서도 많이 사용되니까 쓰는 습관들이기!

White Space

자바스크립트는 여러줄의 빈공간을 무시하므로 그냥 읽기 쉽게 만들 수 있음

Line Breaks

= 과같은 연산자 뒤로 문장을 나눠쓸 수 있음

예제

document.getElementById("demo").innerHTML =
"Hello Dolly!";

Code Blocks

curly brackets {…} 안으로 코드가 뭉칠 수 있음

▸ 같이 실행되기를 원하는 자바스크립트 코드를 묶는것

예제

function myFunction() {
  document.getElementById("demo1").innerHTML = "Hello Dolly!";
  document.getElementById("demo2").innerHTML = "How are you?";
}

Keywords

문장은 종종 수행 할 JavaScript 조치를 구별하기 위해 키워드(keyword)로 시작

▸ 키워드들은 변수명으로 사용하면 안됨!

▸ 대표적으로 break, continue, debugger… 가 있음

키워드 더보기


이 웹사이트는 jekyll로 제작되었습니다. Patrick Marsceill, Distributed by an MIT license.