typescript学习

it2022-12-30  62

安装typescript npm install -g typescript idea中新建ts文件,里面写入console.log('Hello Ts');,再通过tsc命令编译,编译完后会生成js文件,js文件可以通过node命令来执行 tsc hello.ts node hello.js

3. 简化执行ts步骤,安装ts-node包,安装好以后直接用ts-node命令来执行

npm i -g ts-node ts-node hello1.ts

命名规则,只能使用字母下划线来命名,建议使用驼峰命名法

null和undefined,undefined表示声明但未赋值的变量值,null表示声明且已赋值,值就为null

let a : undefined = undefined; let b: null = null
最新回复(0)