js进阶
tomotoCoder
前端,vue,react,享受编程,喜欢coding
展开
-
(转)手写promise探究底层原理
版权声明:自由转载--保持署名 https://blog.csdn.net/wu_xianqiang/article/details/79596707 function Promise(excutor) { let self = this self.status = 'pending' self.v...转载 2019-05-27 18:53:37 · 1167 阅读 · 1 评论 -
TypeScript基本用法和在vue中的使用
TypeScript基本用法 1.声明 let isDone: boolean = false; :后面 跟数据类型string,number,boolean,object等等 = 后面跟对应值 在函数定义中使用 function add(x: number, y: number): number { return x + y; } 2.接口 interfa...原创 2019-08-22 20:35:10 · 791 阅读 · 0 评论