switch

shin·2021년 6월 3일
0

javascript

목록 보기
15/23
var one = {}
var two = {}
var three = {}
switch(three){
    case one:
        document.write('1');
        break;
    case two:
        document.write('2');
        break;
    case three:
        document.write('3');
        break;    
}
//  3
  • if문과 대체재
  • switch ()안에 어떠한 값이 들어가면 그 값과 같은 case구간이 실행이 된다. case안에 구문이 break에 도달하면 멈춘다.

0개의 댓글