function Person () { this.name = 'little bear', this.age = 18 setTimeout(()=>{console.log(this)})}var a = new Person()setTimeout里的this代表new Person出...
function Person () { this.name = 'little bear', this.age = 18 setTimeout(()=>{console.log(this)})}var a = new Person()setTimeout里的this代表new Person出...
本文介绍了setTimeout函数的基本用法,包括延迟执行、循环执行、指定延迟执行、指定回调函数、取消定时器、定时器ID、封装好的常用工具函数以及实际场景中的应用案例。...