零基础入门TypeScript

Step01.安装ts

  • 先有node

    npm i -g typescript
    
  • 写ts文件

    helloworld.ts

    console.log("Hello TS");
    
  • 编辑为js

    tsc helloworld.ts
    
    node helloworld.js
    

Step02.类型声明

  • js是一种动态类型语言

  • 即使你将

你可能感兴趣的:(前端知识点合集,typescript,javascript,前端)