TypeScript学习

1 安装与调试 全局安装ts编译工具typescript与调试工具ts-node,使node支持typescript 1 2 npm install -g typescript npm install -g ts-node 2 TS操

This

1 隐式this的确定规则 函数的简单调用,this表示window/global对象(严格模式为undefined) fn(1, 2) <=> fn.call(undefined, 1, 2) 通过对象调用方