今天做深信服的笔试题 最有一道题不会 请大佬指教

https://img3.mukewang.com/5c95aabd0001c47e07940773.jpg


慕妹3242003
浏览 703回答 2
2回答

海绵宝宝撒

var AI = function () {    this.timeout = null;    this.cancel = function () {         clearTimeout(this.timeout);        return this;     }    this.talk = function () {        this.timeout = setTimeout(() => console.log('talk'));        return this     } }var ai = new AI() ai.talk().cancel()
打开App,查看更多内容
随时随地看视频慕课网APP