IP属地:北京
async函数是generator函数的语法糖,但对generator进行了改进,其中最方便的一点就是async返回一个promise对象,在实...
在这里我们把history简化成一个链表来讨论 , 以下红色数字为 url 当前位置 引起history变化的动作有三类: 页面点击链接,js控...
class parent{ constructor(){ this.name = "parent" } p_say(){ console.log...
js中this的用法比较杂乱,这里总结一下。 一:全局作用域中this指向window对象。 var number = 10; this.num...