while문
-
[javascript] 28. while 반복문(while loop) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 15:19
JavaScript While Loop 1. The While Loop while 반복문은 명시된 조건이 참인 한에서 계속해서 반복문을 도는 구문입니다. 문법: while (condition) { code block to be executed } 예제: 1234567891011121314151617181920212223242526 Click the button to loop through a block of code as long as i is less than 10. Try it function myFunction() {var text = "";var i = 0;while (i