typescript
wangatong
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
vite + vue3 + ts 安装 tinymce
tinymce原创 2022-07-22 11:11:04 · 2464 阅读 · 1 评论 -
vue3 - Ts版本
crypto-js原创 2022-07-05 17:15:26 · 815 阅读 · 0 评论 -
typescript 数据类型
基本数据类型(原始类型)number,string,boolean, null, undefinedlet age:number = 20;let name:string = '张三';let isEat:boolean = true;let a:undefined = undefined;let b:null = null;复杂数据类型(对象类型)原创 2022-05-17 16:03:20 · 216 阅读 · 0 评论 -
ts-node安装
npm i -g ts-node当运行报错Cannot find name ‘console‘ts-node hello.ts再安装npm install -g @types/node原创 2022-05-17 14:05:09 · 1990 阅读 · 0 评论 -
typescript 内容介绍
typescript是javascript的超集,javascript的代码可以与typescript一起工作无需修改安装nodejs时会npm工具typescript工具的安装npm install -g typescript查看版本tsc -vtsc 文件名.ts会生成同一个名字的js文件void该方法没有返回值name():void { console.log("Runoob") } typescript基础类型任意类型anylet x: any = 1原创 2022-04-30 16:47:23 · 890 阅读 · 0 评论
分享