首页 > 代码库 > switch结构

switch结构

 
 
 
 
 
var a = 1;
switch(a) {
    case 1 :
        console.log(1);
        break;
    case 2 :
        console.log(2);
        break;
    case 3 :
        console.log(3);
        break;
    default :
        console.log("default");
}

 break语句:介绍整个switch语句,必须放到switch的语句块中。

switch结构