es7、es8语法

1.es7

1.1.绑定作用域

context::fn 等价于 fn.bind(context)
const divs = document.getElementsByClassName('div')
Array.prototype.forEach.bind(divs,function (...arg){})
divs::Array.prototype.forEach(function (...arg){})

 

posted @ 2021-08-06 13:18  卷叶小树  阅读(45)  评论(0编辑  收藏  举报