数据类型检测

JS类型转换详解
//强制类型转换
/*
* 字符串--->数字
* 布尔---->数字
* 数字--->字符串
* 数字---->布尔
* 布尔--->字符串
* 字符串--->布尔
* */
console.log('123455'-1);//123454
console.log(parseInt('123')-2);//121
console.log(true-1);//0
console.log(1-true);//0
if(1){//true
console.log("1的隐士转化为true");
}
if('-3'){//true
console.log("字符串-3");
}
if(-3){//true 注意数字转换为boolean值的时候,除了0之外都是true
console.log("数字-3");
}
if(0){//false
console.log("数字零");
}
if('false'){//true
console.log("字符串false");
}
if(false){//false
console.log("与字符串false区别");
}
if(!-3){//false
console.log("取反的隐士转换");
}
//隐士类型转换
/*
* if while
* '' ! 运算的时候 console.log()
*
* */
console.log(!"-3");//false





转载于:https://www.cnblogs.com/itlyh/p/6006233.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值