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

其它数据类型转 boolean

时间:2016-11-14 07:43:50      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:隐式   str   ons   var   数据类型   log   nbsp   code   pre   

大体分两种:隐式类型转换和显式类型转换

隐式类型转换用 !!

 var str = "abc";
 str = !!str;
 console.log(typeof str);  //boolean

 

显式类型转换用Boolean()

var str = "abc";
str = Boolean(str);
console.log(typeof str); //boolean

 

其它数据类型转 boolean

标签:隐式   str   ons   var   数据类型   log   nbsp   code   pre   

原文地址:http://www.cnblogs.com/banzhuxiang/p/6060507.html

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