摘要: TypeScript 函数 1. 函数声明 /函数 //es5匿名函数 function run4() { return 'run4'; } console.log(run4); var run5 = function () { return 'run5'; } console.log(run5); 阅读全文
posted @ 2020-04-29 13:59 jane_panyiyun 阅读(250) 评论(0) 推荐(0) 编辑
摘要: TypeScript 数据类型 //字符串 let str: string = "你好ts" let str1: string = "你好typescript" //布尔 var flag: boolean = true flag = false //数字 var a: number = 123 c 阅读全文
posted @ 2020-04-29 10:45 jane_panyiyun 阅读(252) 评论(0) 推荐(0) 编辑
摘要: TypeScript 介绍,安装和开发工具 视频地址:https://www.bilibili.com/video/BV1yt411e7xV?from=search&seid=3283823731602112531 1. 安装: npm install -g cnpm --registry=http 阅读全文
posted @ 2020-04-29 10:15 jane_panyiyun 阅读(350) 评论(0) 推荐(0) 编辑