JS变量类型和计算

2017-12-06  本文已影响0人  jrg陈咪咪sunny

变量类型

var a = 100
var b = a
a = 200
console.log(b) //100
var a = {age:20}
var b = a
b.age = 21
console.log(a.age) //21
typeof undefined  // undefined
typeof 'abc'   // string
typeof 123   // number
typeof  true   // boolean     以上是值类型

typeof  {}    // object (对象)
typeof  []   // object (数组)
typeof  null  // object (空,但他是object类型)
typeof  console.log  // function (函数)    以上是引用类型

typeof只能区分值类型,区分不了引用类型,function是JS中特殊的级别最高的,可以区分。

变量计算 - 强制类型转换 (值类型)

var a= 100 +10   // 110
var b =100 +'10'  // '10010'
100 == '100'  // true        将100转成'100'字符串,相等了。
0 == ' '  // true        0是false,  ' '是false,相等了。
null == undefined  // true       同上,都相等了。

== 要慎用,如果是===就不一样了。

var  a = true
if (a) { 
      //  ...true
}
var b = 100
if (b) {
     //  ...true
}
var c = ' '
if (c) {
    //  ...false
}
console.log(10 && 0)   // 0  10=true,0=false.返false,0.
console.log('  ' || 'abc')    // 'abc'  ' '=false,'abc'=true,返true,'abc'
console.log( !window.abc)   // true   window.abc=undefined,undefined转true.

//判断一个变量被当做true 还是false
var a = 100
console.log(!!a)
上一篇下一篇

猜你喜欢

热点阅读