240 发简信
IP属地:香港
  • 3、变量运算 - 强制类型转换

    1、字符串拼接 varb =100+'10'; console.log(b) // 10010 2、== 运算符 console.log (...

  • 04、如何理解 JSON

    1、console.log ( JSON.stringify ( { a:10, b:20 } ) ) ; // {"a":10,"b"...

  • 2、typeof 运算符

    1、typeof undefined // undefined 2、typeof 'abx' // string 3、typeof 1...

  • 1、值类型和引用类型 JS

    转载自 : http://www.cnblogs.com/lxq1990/archive/2012/11/04/2754226.html 一、J...