## 6.手写数组去重 ```js const unique = (array)=>{ let container = {} return array.filter((item)=>{ return container.hasOwnProperty(item) ? false : (container[item] = true); }) } ```
1.手动实现一个Ajax function myAjax(config){ let { url, method = 'get', data = {}, async = true, success, fail } = config let xml = new XMLHttpRequest() xml.onreadystatechange = function(){ if(xml.readyState == 4){ ...
2.模拟apply Function.prototype.myapply = function(context = window, args){ if(this == Function.prototype){ return undefined; } context = context || window; const fn = Symbol(); context[fn] = this; if (Array.isArray(args)) { result = contextfn...
Object.assign function assign(target: object, ...sources: any[]): object { if (!isObject(target)) { throw new TypeError('The target must be an Object not a function') } sources.forEach(source => { let descriptors = Object.keys(source).reduce((descriptor, key) => { ...
1.模拟call Function.prototype.mycall = function(context = window, ...args){ if(this == Function.prototype){ return undefined; } context = context || window; const fn = Symbol(); context[fn] = this; const result = contextfn; delete context[fn] ...
1.手写防抖 function debounce(handleEvent, time, flag){ let timeout = null; return function(...agrs){ clearTimeout(timeout) if(flag && !timeout){ handleEvent.apply(this, args) } timeout = setTimeout(()=>{ handleEvent.apply(this, arg...
## 1.手写深克隆 ```js function copy(data){ let obj = data instanceof Array ? [] : {} for (const [k,v] of Object.entries(data)) { obj[k] = typeof v == "object" ? copy(v) : v; } return obj } ```
7.手动实现ES5的继承 function People() { this.type = 'prople' } People.prototype.eat = function () { console.log('吃东西啦'); } function Man(name) { this.name = name; this.color = 'black'; } No.1原型继承 Man.prototype = new People(); let a = new Man() console.log(a.__prot...
## 1.手动实现一个instanceof ```js function myinstanceof(target, origin){ let proto = target.__proto__ if(proto){ if(proto === origin.prototype){ return true }else{ return myinstanceof(proto, origin) } }else{ return false } } ```
12.图片懒加载 let imgs = document.getElementsByTagName("img"); let n = 0 lazyload() //节流函数 function throttle(handleEvent,time){ let timer return function(...args){ if(timer){ timer = setTimeout(() => { timer = null handleEvent.apply(...