switch 条件语句
语法
var a = 1;
switch(a){
case 1: 123;
case 2: 234;
case 3: 456;
}
switch的break;终止后面的条件选择执行代码,也可以理解终止循环
continue
终止本次循环执行一下次循环
typeof
- number 数字
- string 字符串
- boolean 布尔逻辑
- undefined 未定义
- object 对象
- function 函数
- typeof没有经过变量也可以使用
- typeof返回null仍然是object,历史遗留原因
var a = 123;
console.log(typeof(a));//返回数字
var a = "123";//
console.log(typeof(a));//返回字符串
var a = true;
console.log(typeof(a));//返回布尔
var a = [];
console.log(typeof(a));//返回数组
var a = {};
console.log(typeof(a));//返回对象
function a(){};
console.log(typeof(a));//返回函数
来源:CSDN
作者:Y,zhou
链接:https://blog.csdn.net/Yzhoun/article/details/103496280