对存在JavaScript隐式类型转换的四种情况的总结(必看篇)
程序员文章站
2022-04-29 08:24:04
一般存在四种情况,javascript会对变量的数据类型进行转换。
目录
* if中的条件会被自动转为boolean类型
* 会被转为false的数据...
一般存在四种情况,javascript会对变量的数据类型进行转换。
目录
* if中的条件会被自动转为boolean类型 * 会被转为false的数据 * 会被转为true的数据 * 参与+运算都会被隐式的转为字符串 * 会被转为空字符串的数据 * 会被转为字符串的数据 * 会被转为数据类型标记的数据 * 参与*运算都会被隐式的转为数字 * 会被转为0的数据 * 会被转为1的数据 * 会被转为nan的数据 * == 运算符 * 为true的时候 * 为false的时候
if中的条件会被自动转为boolean类型
会被转为false的数据
if(false) console.log(2333) if('') console.log(2333) if(null) console.log(2333) if(undefined) console.log(2333) if(nan) console.log(2333)
会被转为true的数据
if(true) console.log(2333) // 2333 if('test') console.log(2333) // 2333 if([]) console.log(2333) // 2333 if({}) console.log(2333) // 2333
参与+运算都会被隐式的转为字符串
会被转为空字符串的数据
'str-' + '' // str- 'str-' + []
会被转为字符串的数据
'str-' + '1' // "str-1" 'str-' + 1 // "str-1" 'str-' + false // "str-false" 'str-' + true // "str-true" 'str-' + null // "str-null" 'str-' + undefined // "str-undefined" 'str-' + nan // "str-nan"
会被转为数据类型标记的数据
'str-' + {} // "str-[object object]" 'str-' + {a:1} // "str-[object object]"
参与*运算都会被隐式的转为数字
会被转为0的数据
2 * '' // 0 2 * [] // 0 2 * false // 0
会被转为1的数据
2 * '1' // 2 2 * [1] // 2 2 * true // 2
会被转为nan的数据
2 * {} // nan 2 * {a:1} // nan
== 运算符
为true的时候
0 == false // true 0 == '' // true 0 == '0' // true 0 == [] // true 0 == [0] // true 1 == true // true 1 == '1' // true 1 == [1] // true [1] == true // true [] == false // true
为false的时候
0 == {} // false 0 == null // false 0 == undefined // false 0 == nan // false 1 == {} // false 1 == null // false 1 == undefined // false 1 == nan // false [] == [] // false [1] == [1] // false [1] == {} // false [1] == {a:1} // false [1] == false // false [1] == null // false [1] == undefined // false [1] == nan // false {} == {} // false {a:1} == {a:1} // false
注:空数组[],在+运算符下是转为空字符串'',在*运算符下是转为数字0。但在if语句中,则转为true。
以上这篇对存在javascript隐式类型转换的四种情况的总结(必看篇)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
下一篇: 基于JSON数据格式详解