es6
BonnieYY
做人,一定要有梦想
展开
-
es6数组、对象的基本用法
ecma基本语法还是得了解的 // 数组可接收两个参数,1为回调函数,2为this的指向 //类似于for循环 arr.forEach(function(val,inde,arr){ //this 就是 arr }.bind(this)) arr.forEach(function(val,inde,arr){...原创 2019-01-16 15:52:28 · 252 阅读 · 0 评论 -
Proxy精讲
<div id="box"></div> <!-- 語法 new Proxy(target,handler) --> <!-- let object = new Proxy(被代理的對象,對代理的對象做什麼操作) --> <!-- handler: { set(){}, get...原创 2019-03-27 14:10:42 · 157 阅读 · 0 评论 -
es6的骚写法 -- 函数柯里化
const curry = (fn,arr=[])=>(…args)=>(arg=>arg.length===fn.length? fn(…arg):curry(fn,arg))([…arr,…args])let val = curry((a,b)=>a+b)(5)(6)console.log(val) 答案是11原创 2019-06-21 17:25:06 · 512 阅读 · 0 评论