๐ป Programming/Javascript
[Javascript / ์๋ฐ์คํฌ๋ฆฝํธ] ๊ฐ์ข #7 - while loop ( while ๋ฃจํ )
์ด๋ฒ ํฌ์คํ ์์๋ ์๋ฐ์คํฌ๋ฆฝํธ์ while ๋ฃจํ๋ฌธ์ ๋ํด์ ์์๋ณด๋๋ก ํ๊ฒ ์ต๋๋ค.
์ฐ์ ๋ฌธ๋ฒ๋ถํฐ ํ์ธํด๋ณผ๊น์??
while (์กฐ๊ฑด๋ฌธ){ ์กฐ๊ฑด๋ฌธ์ด ์ฐธ์ธ๋์ ์คํํด์ผํ ๋ฌธ์ฅ } |
์ด์ ์์ ๋ฅผ ํ๋ฒ ๋ณผ๊น์??
<script type="text/javascript"> <!-- var count = 0; document.write("Starting Loop" + "<br />"); while (count < 10){ document.write("Current Count : " + count + "<br />"); count++; } document.write("Loop stopped!"); //--> </script> |
๊ฒฐ๊ณผ๊ฐ ์ด๋ป๊ฒ ๋์ฌ๊ฒ ๊ฐ๋์??
์๋์ฒ๋ผ ๋์์ผ๊ฒ ์ฃ ??
Starting Loop Current Count : 0 Current Count : 1 Current Count : 2 Current Count : 3 Current Count : 4 Current Count : 5 Current Count : 6 Current Count : 7 Current Count : 8 Current Count : 9 Loop stopped! |
์ while๋ฌธ๊ณผ ๋น์ทํ do-while๋ฌธ์ ์์๋์? do-while๋ฌธ์ ์ผ๋จ ๋จผ์ ํ๋ฒ ์คํ์ํจ ๋ค์์ while๋ฌธ์ ํ๋๊ฒ๋๋ค.
์ญ์ ๋ง๋ณด๋ค๋ ์ค์ต์ด์ฃ ?
๋ฌธ๋ฒ๋ถํฐ ํ์ธํด๋ณผ๊น์??
do{ ์ต์ ํ๋ฒ์ ์คํ๋์ด์ผ ํ๋ ๋ฌธ์ฅ } while (์กฐ๊ฑด๋ฌธ); |
๊ทธ๋ผ ์ด์ ์์ ๋ฅผ ํ๋ฒ ๋ด ์๋ค.
<script type="text/javascript"> <!-- var count = 0; document.write("Starting Loop" + "<br />"); do{ document.write("Current Count : " + count + "<br />"); count++; }while (count < 0); document.write("Loop stopped!"); //--> </script> |
๊ฒฐ๊ณผ๊ฐ ์์์ด ๋๋์?
์๋์ฒ๋ผ ๊ฒฐ๊ณผ๋ฅผ ์์ํ์ จ๋ค๋ฉด ๋น์์ ์๋ฐ์คํฌ๋ฆฝํธ์ ์ค์๊ฐ ๋์ ๊ฒ๋๋ค~ ์ถํ๋๋ ค์ฉ~~ใ ใ
Starting Loop Current Count : 0 Loop stopped! |
๊ฐ๋จํ์ฃ ??
๋ณ๊ฑฐ ์์ต๋๋ค ใ ใ
Reference : http://www.tutorialspoint.com/javascript/javascript_while_loop.htm