猿问

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

ITMISS
浏览 556回答 2
2回答

慕码人2483693

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

相关分类

Vue.js
我要回答