微博:天机常自在

IP属地:河北
1、字符串拼接 varb =100+'10'; console.log(b) // 10010 2、== 运算符 console.log ( 100 == '100' )...
1、console.log ( JSON.stringify ( { a:10, b:20 } ) ) ; // {"a":10,"b":20} 2、console....
1、typeof undefined // undefined 2、typeof 'abx' // string 3、typeof 123 // number ...
转载自 : http://www.cnblogs.com/lxq1990/archive/2012/11/04/2754226.html 一、JavaScript值类型和引用...