摘要: js箭头函数特点: 1、不可以new 2、 没有原型prototype 3、没有arguments 4、 没有this 阅读全文
posted @ 2024-05-15 17:01 howhy 阅读(1) 评论(0) 推荐(0) 编辑
摘要: function debounce(fn, delay) { let timer; let tht = this; return function (...args) { clearTimeout(timer) console.log(...args) timer = setTimeout(() = 阅读全文
posted @ 2024-05-15 13:54 howhy 阅读(48) 评论(0) 推荐(0) 编辑