上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 49 下一页
摘要: 手写call /** * 实现call * @param {*} context * fn.call(target,...args) * 让fn中的this指向target * 思路是函数默认指向调用者,在目标对象上挂载fn,执行的时候fn中的this默认指向目标对象, 执行完拿到结果并删除这个挂载 阅读全文
posted @ 2022-01-25 12:47 IslandZzzz 阅读(230) 评论(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 阅读(225) 评论(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 阅读(59) 评论(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 阅读(209) 评论(0) 推荐(0)
摘要: any绕过类型检查,或者说放弃类型检查 unknown表示未知类型,一般配合断言使用才能通过类型检查 能用unknown尽量用unknown,少用any 阅读全文
posted @ 2022-01-24 00:24 IslandZzzz 阅读(87) 评论(0) 推荐(0)
摘要: 并不是所有的CSS属性都能触发GPU的硬件加速,实际上只有少数属性可以,比如下面的这些: transform opacity filter 对于transform,2D transform 动画在开始和结束时发生的 repaint 操作,因此建议采用以下方式 .example1 { transfor 阅读全文
posted @ 2022-01-23 23:21 IslandZzzz 阅读(125) 评论(0) 推荐(0)
摘要: 正则匹配指定规则字符串的中间内容 假设前缀为prefix,后缀为suffix /prefix(.*)suffix/ 阅读全文
posted @ 2022-01-21 17:41 IslandZzzz 阅读(21) 评论(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 阅读(314) 评论(0) 推荐(0)
摘要: 安装xcode-select xcode-select --install 安装homebrew https://cloud.tencent.com/developer/article/1853162 Brew 替换为国内源Mac 替换brew.git cd "$(brew --repo)" git 阅读全文
posted @ 2022-01-14 22:51 IslandZzzz 阅读(240) 评论(0) 推荐(0)
摘要: js开发中可用的位运算 按位与判断数值是否相等 &:按位与,位数都为1才返回1 可用来对2的次幂数做比较 1、2、4、8、16、32、64 0b0001 0b0010 0b0100 0b1000 0b10000 0b100000 0b1000000 左右移 >> 带符号右移 >>> 无符号右移 2 阅读全文
posted @ 2021-12-28 15:06 IslandZzzz 阅读(50) 评论(0) 推荐(0)
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 49 下一页