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