-
[javascript] 5. 구문(Statements) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 14:251. JavaScript Statements
아래 예제에서는 브라우저에 "Hello JS"를 작성하는 Statement임을 말해줍니다. id가 "demo"인 HTML 요소의 안에 넣습니다.
123456789101112131415<!DOCTYPE html><html><body><p>In HTML, JavaScript statements are "commands" to the browser.</p><p id="demo"></p><script>document.getElementById("demo").innerHTML = "Hello JS.";</script></body></html>cs 2. JavaScript White Space
자바스크립트는 여러 공백을 무시합니다.
작성하는 스크립트에 공백을 추가해 가독성(readability)을 높힐 수 있습니다.
12var person = "Gangnam";var person="Gangnam";cs 3. JavaScript Line Length and Line Breaks
뛰어난 가독성으로, 프로그래머는 종종 한 라인에 80자 이상으로 넘기는 것을 피합니다.
자바스크립트 Statement가 한 라인에 차지 못 할경우, 연산자가 나온 후, 개행하는 것이 가장 좋은 위치입니다.
12document.getElementById("demo").innerHTML ="Hello Dolly.";cs 4. JavaScript Keywords
자바스크립트 종종 Statements는 자바스크립트 액션을 수행하기 위한 키워드로 시작합니다.
Keyword Description break Terminates a switch or a loop continue Jumps out of a loop and starts at the top debugger Stops the execution of JavaScript, and calls (if available) the debugging function do ... while Executes a block of statements, and repeats the block, while a condition is true for Marks a block of statements to be executed, as long as a condition is true function Declares a function if ... else Marks a block of statements to be executed, depending on a condition return Exits a function switch Marks a block of statements to be executed, depending on different cases try ... catch Implements error handling to a block of statements var Declares a variable [출처: W3schools]
'Web > JavaScript' 카테고리의 다른 글
[javascript] 8. 연산자(Operators) - 자바스크립트 강좌 JS / CSE (0) 2015.06.13 [javascript] 7. 변수(Variables) - 자바스크립트 강좌 JS / CSE (0) 2015.06.13 [javascript] 6. 주석(Comments) - 자바스크립트 강좌 JS / CSE (0) 2015.06.13 [javascript] 4. 문법(Syntax) - 자바스크립트 강좌 (0) 2015.06.13 [javascript] 3. 출력(Output) - 자바스크립트 강좌 (0) 2015.06.13 [javascript] 2.WhereTo - 자바스크립트 강좌 (0) 2015.06.13