码迷,mamicode.com
首页 > 其他好文 > 详细

switch语句

时间:2019-06-13 16:59:02      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:比较   字符创   head   har   默认   log   字符   oct   body   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>switch</title>
<script>
/**
* switch中的语句后面一般都会加上break,否则一个case匹配后不仅会执行当前的语句,
* 还会继续执行后面case的语句。
*
*/
var num = "1"; //比较的是全等,字符创“1”和数字 1 不匹配
switch (num) {

case 1:
console.log("一");
break;
case 2:
console.log("二");
break;
case 3:
console.log("三");
break;
default:
console.log("默认");
}
</script>
</head>
<body>

</body>
</html>

switch语句

标签:比较   字符创   head   har   默认   log   字符   oct   body   

原文地址:https://www.cnblogs.com/huangpeideng/p/11017433.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!