美文网首页
typescript定义

typescript定义

作者: 前端Tree | 来源:发表于2021-08-25 12:14 被阅读0次

    1、js代码

    //  动态类型
    let a = '123'
    a = 234
    
    // 上面代码没问题
    
    

    ts代码

    // 静态类型
    let b: number = 123
    b = '123123'
    console.log('b',b )
    
    image.png

    此图表示 变量b声明的为number 不能赋值字符串

    相关文章

      网友评论

          本文标题:typescript定义

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