美文网首页
javascript学习1

javascript学习1

作者: 傲慢与偏见_dfc1 | 来源:发表于2018-12-03 16:03 被阅读0次

    JavaScript 数据类型

    String Number Boolean Undefined Object Array null

    let str = 'string'
    console.log(typeof str);
    //string
    let number = 123
    console.log(typeof number);
    //number
    let boolean = true
    console.log(typeof boolean);
    //boolean
    let undefin = undefined
    console.log(typeof undefin);
    //undefined
    let obj = {xxx:'sss'}
    console.log(typeof obj)
    //object
    let array =  [1,2,2]
    console.log(typeof array)
    //object
    let nu = null;
    console.log(typeof nu);
    //object
    
    

    除了前四个基本数据类型 其他数据类型 typeof 输出都是object (数组也是一个对象)
    所以判断是否为数组最好使用 instanceof

    console.log(array instanceof Array)
    //true
    

    但是

    console.log(Number instanceof Number)
    //false
    

    相关文章

      网友评论

          本文标题:javascript学习1

          本文链接:https://www.haomeiwen.com/subject/yugycqtx.html