typescript
Zale-Ying
这个作者很懒,什么都没留下…
展开
-
TypeScript教程摘录(1)
一 变量类型 1. 多行字符串 2. 模板字符串 3. 字符串拆分 DEMO: 二. 参数特性 可选参数和参数默认值原创 2019-01-10 13:38:24 · 163 阅读 · 0 评论 -
TypeScript教程(2)
Generator函数 控制函数的执行过程,手工暂停,继续 案例二 function* getStockPrice(stock){ while(true){ yield Math.random()*100; } } var priceGenerator = getStockPrice() var limitPrice = 15; var price ...原创 2019-01-11 10:48:45 · 514 阅读 · 0 评论 -
typeScript 教程(3) 面向对象
类的特性: class Person { //构造函数,只在new时候被调用 constructor(public name:string) { console.log('123') } eat() { console.log(this.name) } //公开 // public name; ...原创 2019-01-14 16:36:41 · 191 阅读 · 0 评论