猿问

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


慕妹3242003
浏览 707回答 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
我要回答