๐ย Reference
๐ Chapter
switch
Ternary operator (์ผํญ ์ฐ์ฐ์)
if, else if, else
- if
- else if
- else
- ์กฐ๊ฑด๋ฌธ
- ์กฐ๊ฑด์ ๋ฐ๋ผ์ ํ๋ก๊ทธ๋จ์ ํ๋ฆ์ ๊ฒฐ์ ํ ๋ ์ฌ์ฉํ ์ ์๋ ๋ฌธ๋ฒ์ด๋ค.
if
else if
else

if(condition1){
}else if(condition2){
}else{
}