프로그램 흐름 제어(JavaScript)
단일 선택 구조(if) 이중 선택 구조(if/else) 인라인 삼항 연산자 ?: 다중 선택 구조(switch)
루프 위쪽에서 식 테스트(while) 루프 아래쪽에서 식 테스트(do/while) 개체의 각 속성에 대한 연산(for/in) 카운터 제어 반복(for)
function GetReaction(newShip, color, texture, dayOfWeek) { // The test succeeds if the newShip Boolean value is true. if (newShip) { return "Champagne Bottle"; } // The test succeeds if both conditions are true. if (color == "deep yellow" && texture == "large and small wrinkles") { return "Is it a crenshaw melon?"; } // The test succeeds if either condition is true. if ((dayOfWeek == "Saturday") || (dayOfWeek == "Sunday")) { return "I'm off to the beach!"; } else { return "I'm going to work."; } } var reaction = GetReaction(false, "deep yellow", "smooth", "Sunday"); document.write(reaction); // Output: I'm off to the beach!
var AMorPM = (theHour >= 12) ? "PM" : "AM";
if ((runfirst() == 0) || (runsecond() == 0)) { // some code }
// The update expression ("icount++" in the following examples) // is executed at the end of the loop, after the block of // statements that forms the body of the loop is executed, and // before the condition is tested. // Set a limit of 10 on the loop. var howFar = 10; // Create an array called sum with 10 members, 0 through 9. var sum = new Array(howFar); sum[0] = 0; // Iterate from 0 through 9. var theSum = 0; for(var icount = 0; icount < howFar; icount++) { theSum += icount; sum[icount] = theSum; } // This code is not executed at all, because icount is not greater than howFar. var newSum = 0; for(var icount = 0; icount > howFar; icount++) { newSum += icount; } // This is an infinite loop. var sum = 0; for(var icount = 0; icount >= 0; icount++) { sum += icount; }
// Create an object with some properties var myObject = new Object(); myObject.name = "James"; myObject.age = "22"; myObject.phone = "555 1234"; // Enumerate (loop through)_all the properties in the object for (var prop in myObject) { // This displays "The property 'name' is James", etc. document.write("The property '" + prop + "' is " + myObject[prop]); // New line. document.write("<br />"); }
var x = 0; while ((x != 5) && (x != null)) { x = window.prompt("What is my favorite number?", x); } if (x == null) window.alert("You gave up!"); else window.alert("Correct answer!");
![]() |
---|
var x = 0; do { x = window.prompt("What is my favorite number?", x); } while ((x != 5) && (x != null)); if (x == null) window.alert("You gave up!"); else window.alert("Correct answer!");
var x = 0; do { x = window.prompt("What is my favorite number?", x); // Did the user cancel? If so, break out of the loop if (x == null) break; // Did they enter a number? // If so, no need to ask them to enter a number. if (Number(x) == x) continue; // Ask user to only enter in numbers window.alert("Please only enter in numbers!"); } while (x != 5) if (x != 5) window.alert("You gave up!"); else window.alert("Correct answer!");
from MSDN : https://msdn.microsoft.com/ko-kr/library/kw1tezhk(v=vs.94).aspx
///845.
'지속가능티끌 > JavaScript' 카테고리의 다른 글
JavaScript. 함수 (Functions) (0) | 2016.07.27 |
---|---|
JavaScript. 연산자, 우선순위. Operators. (0) | 2016.07.27 |
JavaScript. 변수 (Variable). 전역,지역 (0) | 2016.07.27 |
JavaScript. 코드 작성 룰. (0) | 2016.07.27 |
JavaScript. 내장개체(built-in object). Number, Array, Math, String, Date, JASON (0) | 2016.07.27 |
댓글