// 5.switch语句:寻找指定值
//break:终止循环,只要找到结果,则不往下继续执行。
//continue 跳过本次执行语句,执行下一句
// var n = "a";
// switch (n) {
// case "a":
// console.log('a');
// break;
// case "a":
// console.log('b');
// }