文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

手写Pollyfill有哪些

2023-06-27 10:24

关注

这篇文章主要介绍了手写Pollyfill有哪些的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇手写Pollyfill有哪些文章都会有所收获,下面我们一起来看看吧。

new

测试用例:

function Fn (name) {  this.name = name}console.log(myNew(Fn('lulu')))

实现:

function myNew () {  const obj = {}  const Fn = Array.prototype.shift.call(arguments)  // eslint-disable-next-line no-proto  obj.__proto__ = Fn.prototype  const returnVal = Fn.apply(obj, arguments)  return typeof returnVal === 'object' ? returnVal : obj}

bind

测试用例:

this.x = 9const obj = {  x: 81,  getX: function () {    return this.x  }}console.log(obj.getX()) // 81const retrieveX = obj.getXconsole.log(retrieveX()) // 9const boundGetX = retrieveX.bind(obj)console.log(boundGetX()) // 81

实现:

Function.prototype.mybind = function () {  const outerArgs = Array.from(arguments)  const ctx = outerArgs.shift()  const self = this  return function () {    const innerArgs = Array.from(arguments)    return self.apply(ctx, [...outerArgs, ...innerArgs])  }}

instanceof

测试用例:

console.log(myInstanceof("111", String)); //falseconsole.log(myInstanceof(new String("111"), String));//true

实现:

function myInstanceof(left, right) {    //基本数据类型直接返回false    if(typeof left !== 'object' || left === null) return false;    //getProtypeOf是Object对象自带的一个方法,能够拿到参数的原型对象    let proto = Object.getPrototypeOf(left);    while(true) {        //查找到尽头,还没找到        if(proto == null) return false;        //找到相同的原型对象        if(proto == right.prototype) return true;        proto = Object.getPrototypeOf(proto);    }}

debounce

在规定时间内函数只会触发一次,如果再次触发,会重新计算时间。

function debouncing(func, wait = 1000, immediate = true) {    let timer = null;    return function () {        let args = arguments;        let context = this;        if (timer) {            clearTimeout(timer);        }        if (!immediate) {            //第一种:n秒之后执行,n秒内再次触发会重新计算时间            timer = setTimeout(() => {                //确保this指向不会改变                func.apply(context, [...args]);            }, wait);        } else {            //第二种:立即执行,n秒内不可再次触发            let callnew = !timer;            timer = setTimeout(() => {                timer = null;                console.log('kaka')            }, wait);            if (callnew) func.apply(context, [...args])        }    }}function fn() {    console.log('debluncing')}let f1 = debouncing(fn, 1000);setInterval(() => {    f1()}, 1000);

throttle

节流指的是函数一定时间内不会再次执行,用作稀释函数的执行频率。

function throttle(func, wait = 1000, type = 1) {    if (type === 1) {        let timeout = null;        return function () {            const context = this;            const args = arguments;            if (!timeout) {                timeout = setTimeout(() => {                    timeout = null;                    func.apply(context, [...args]);                }, wait);            }        }    } else {        let previous = 0;        return function () {            const context = this;            const args = arguments;            let newDate = new Date().getTime();            if (newDate - previous > wait) {                func.apply(context, [...args]);                previous = newDate;            }        }    }}function fn() {    console.log('throttle')}const f1 = throttle(fn);setInterval(() => {    f1()}, 100);

deepClone

测试用例:

const map = new Map()map.set('key', 'value')map.set('name', 'kaka')const set = new Set()set.add('11').add('12')const target = {  field1: 1,  field2: undefined,  field3: {    child: 'child'  },  field4: [    2, 8  ],  empty: null,  map,  set}target.target = targetconst target1 = deepClone(target)target1.a = 'a'console.log('

关于“手写Pollyfill有哪些”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“手写Pollyfill有哪些”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯