摘要:
function newOperator(ctor){ if(typeof ctor !== 'function'){ throw 'newOperator function the first param must be a function'; } // ES6 new.target 是指向构造 阅读全文
摘要:
URLSearchParams 接口定义了一些实用的方法来处理 URL 的查询字符串。 一个实现了 URLSearchParams 的对象可以直接用在 for…of 结构中,不需要使用 entries() :for (var p of mySearchParams) 就等于 for (var p o 阅读全文