javascript
-
[javascript] 27. for 반복문(for loop) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 15:19
JavaScript For Loop 반복문은 여러번 블록내의 코드를 실행할 수 있습니다. 1. JavaScript Loops 반복문은 편리합니다. 만약 같은 코드를 여러번 실행해야 한다면, 반복문 없이는 아래와 같을 것입니다. 1234567 text += cars[0] + " "; text += cars[1] + " "; text += cars[2] + " "; text += cars[3] + " "; text += cars[4] + " "; text += cars[5] + " ";cs 반복문을 써서 표현하면: 123for (i = 0; i
-
[javascript] 26. 스위치(switch) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 15:18
JavaScript Switch Statement 1. The JavaScript Switch Statement 스위치 문은 실행시킬 여러 코드 블럭 중에서 한 개를 고를 때 사용합니다. 문법: switch(expression) { case n: code block break; case n: code block break; default: default code block } 작동 방식: - 스위치 문의 식이 한 번 계산됩니다. - 계산된 값은 여러 case 값과 비교됩니다. - 일치하게 되면, 그에 해당하는 블럭의 코드를 실행합니다. 예제: 1234567891011121314151617181920212223242526272829303132333435363738394041424344 Click the b..
-
[javascript] 25. 조건문(conditions) - if, else - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 15:17
JavaScript If...Else Statements 조건문은 다른 조건에 따른 다른 행동을 수행하는데 사용합니다. 1. Conditional Statements 주로 코드를 작성할 때, 다른 결정에 따른 다른 행동을 수행하려 합니다. 그때, 조건문을 코드에 기입합니다. 2. The if Statement if 문을 써서 조건이 참 인 경우, 괄호 안의 실행할 자바스크립트 코드를 명시합니다. 문법: if (condition) { block of code to be executed if the condition is true } 예제: 123456789101112131415161718192021 Display "Good day", only if the time is less than 20:00: Try..
-
[javascript] 24. 비교(Comparisons) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 15:16
JavaScript Comparison and Logical Operators 1. Comparison Operators 비교 연산자는 동일성을 결정짓는 논리 식에 쓰이거나 변수나 값 사이에서 다름을 측정하는데 사용합니다. x = 5 일때, 아래 테이블을 통해 비교 할 수 있습니다. OperatorDescriptionComparingReturnsTry it==equal tox == 8falseTry it ≫x == 5trueTry it ≫===equal value and equal typex === "5"falseTry it ≫x === 5trueTry it ≫!=not equalx != 8trueTry it ≫!==not equal value or not equal typex !== "5"trueTry..
-
[javascript] 23. 논리연산(Booleans) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 14:42
JavaScript Booleans 1. The Boolean() Function Boolean() 메소드를 이용하여 계산 식이 참인지 거짓 인지를 판별 할 수 있습니다. 1Boolean(10 > 9) // returns truecs 또한, 더 쉽게 아래와 같이 사용 할 수 있습니다. 12(10 > 9) // also returns true10 > 9 // also returns truecs 2. Comparisons and Conditions OperatorDescriptionExample==equal toif (day == "Monday")>greater thanif (salary > 9000)
-
[javascript] 22. 배열 메소드(Array Method) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 14:42
JavaScript Array Methods 1. Converting Arrays to Strings 자바스크립트에서, 모든 객체는 valueOf()메소드와 toString()메소드를 가지고 있습니다. valueOf()메소드는 배열을 위한 기본적인 행위 메소드 입니다. 12var fruits = ["Banana", "Orange", "Apple", "Mango"];document.getElementById("demo").innerHTML = fruits.valueOf();cs 자바스크립트 배열에서, valueOf()와 toString()은 같은 역할을 합니다. join() 메소드는 모든 배열의 요소를 결합합니다. toString() 같이 행동하지만, 구분자를 지정해 줘야 합니다: 12345Colored ..
-
[javascript] 21. 배열(Arrays) - 자바스크립트 강좌Web/JavaScript 2015. 6. 13. 14:41
JavaScript Arrays 자바스크립트 배열은 여러 개의 단일 변수 값을 저장하는데 사용됩니다. 1. Displaying Arrays 1234567 var cars = ["Saab", "Volvo", "BMW"];document.getElementById("demo").innerHTML = cars;Colored by Color Scriptercs cars 라는 배열을 생성합니다. id가 demo인 요소에 cars 배열을 입력합니다. 2. What is an Array? 배열은 한번에 한 개 이상의 값을 가질 수 있는 특정한 변수 입니다. 여러 아이템을 가지고 있고, 단일 변수에 차들을 저장한다고 봅시다: 123var car1 = "Saab";var car2 = "Volvo";var car3 = "..
-
[javascript] 20. 날짜 메소드(Date Methods) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 14:39
JavaScript Date Methods 1. Date Get Methods MethodDescriptiongetDate()Get the day as a number (1-31)getDay()Get the weekday as a number (0-6)getFullYear()Get the four digit year (yyyy)getHours()Get the hour (0-23)getMilliseconds()Get the milliseconds (0-999)getMinutes()Get the minutes (0-59)getMonth()Get the month (0-11)getSeconds()Get the seconds (0-59)getTime()Get the time (milliseconds since ..