判断一个对象为空对象的几种方法
方法一:
将对象转换成字符串
1 | let obj = {} |
方法二:
for in 循环
1 | let res = function(obj){ |
方法三:
1 | console.log(Object.keys(obj).length); |
方法四:
1 | console.log(Object.getOwnPropertyNames(obj).length === 0) |
用reduce实现Map
用reduce实现Map
1 | Array.prototype._map = function (fn, thisArg){ |
手写trim
1 | String.prototype._trim = function (str){ |
手写Promise
1 | function proAll(promises){ |
闭包的两个作用
1 | // 封装私有变量 |
手写二叉树
1 | function TreeNode(val, left, right){ |
手写promise.race
1 | function PromiseRace(promises){ |
手写promise
1 | class Promise{ |
手写防抖
1 | function debounce(fn, wait){ |
手写节流
1 | function throttle(fn, wait){ |