面向对象编程,链式调用,先输出‘hello’,10秒之后,输出‘world’
生活随笔
收集整理的這篇文章主要介紹了
面向对象编程,链式调用,先输出‘hello’,10秒之后,输出‘world’
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
let obj={
awaitTime:null,
consoleMsg:function(v){
if(this.awaitTime){
setTimeout(console.log(v),this.awaitTime*1000);
}else{
console.log(v)
}
return obj;
},
awaitFn:function(time){
this.awaitTime = time;
return obj;
}
}
obj.consoleMsg('hello').awaitFn(10).consoleMsg('world')
轉(zhuǎn)載于:https://www.cnblogs.com/-tao/p/8854527.html
總結(jié)
以上是生活随笔為你收集整理的面向对象编程,链式调用,先输出‘hello’,10秒之后,输出‘world’的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Madgwick算法详细解读
- 下一篇: phpstorm知识点