摘要:
"资料" function 函数 没有“this”的持久概念, 调用函数时,创建this 引用具有持久this值的函数 箭头函数 箭头函数捕获this = 创建函数的位置 而不是调用它的位置 箭头函数没有自己的 , 箭头函数内部的上下文在函数的整个生命周期中保持不变, 并且始终将this绑定到最接近 阅读全文
摘要:
interface SquareConfig { color?: string; width?: number; [propName: string]: any; } function asd(opt: SquareConfig): any { } asd({color: 'red', width: 阅读全文