上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 49 下一页
摘要: 实现bind 需要注意的是要考虑作为构造函数的case 构造函数会指定this为new出来的实例对象,此时bind指定的目标无效 /** * fn.bind(context) * Function.bind(this: Function, thisArg: any, ...argArray: any 阅读全文
posted @ 2022-01-25 13:00 IslandZzzz 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 手写apply /** * Function.apply(this: Function, thisArg: any, argArray?: any): any * @param {*} context */ Function.prototype._apply = function(context){ 阅读全文
posted @ 2022-01-25 12:52 IslandZzzz 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 手写call /** * 实现call * @param {*} context * fn.call(target,...args) * 让fn中的this指向target * 思路是函数默认指向调用者,在目标对象上挂载fn,执行的时候fn中的this默认指向目标对象, 执行完拿到结果并删除这个挂载 阅读全文
posted @ 2022-01-25 12:47 IslandZzzz 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 实现reduce /** * * @param {*} cb callbackfn: (previousValue: any, currentValue: any, currentIndex: number, array: any[]) => any): any * @param {*} thisA 阅读全文
posted @ 2022-01-25 12:34 IslandZzzz 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 实现filter /** * 实现filter * @param {*} cb cb : (predicate: (value: any, index: number, array: any[]) => value is S, thisArg?: any): S[] * @param {*} thi 阅读全文
posted @ 2022-01-25 12:32 IslandZzzz 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 手写foreach /** * forEach(cb,thisArg) * cb : (value: any, index: number, array: any[]) => void, thisArg?: any): void * 接受第二个参数thisArg,只是定制forEach中this的指 阅读全文
posted @ 2022-01-25 12:30 IslandZzzz 阅读(175) 评论(0) 推荐(0) 编辑
摘要: any绕过类型检查,或者说放弃类型检查 unknown表示未知类型,一般配合断言使用才能通过类型检查 能用unknown尽量用unknown,少用any 阅读全文
posted @ 2022-01-24 00:24 IslandZzzz 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 并不是所有的CSS属性都能触发GPU的硬件加速,实际上只有少数属性可以,比如下面的这些: transform opacity filter 对于transform,2D transform 动画在开始和结束时发生的 repaint 操作,因此建议采用以下方式 .example1 { transfor 阅读全文
posted @ 2022-01-23 23:21 IslandZzzz 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 正则匹配指定规则字符串的中间内容 假设前缀为prefix,后缀为suffix /prefix(.*)suffix/ 阅读全文
posted @ 2022-01-21 17:41 IslandZzzz 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 源码目录:react/packages/react-dom/src/client/ReactDOMComponentTree.js const randomKey = Math.random() .toString(36) .slice(2); const internalInstanceKey = 阅读全文
posted @ 2022-01-15 17:37 IslandZzzz 阅读(262) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 49 下一页