0
// options
if (options) {
this.deep = !!options.deep
this.user = !!options.user
this.lazy = !!options.lazy
this.sync = !!options.sync
} else {
this.deep = this.user = this.lazy = this.sync = false
}
當我試圖瞭解vue.js看守我看到這句法!!options.deep
here我完全理解了!
手段,但爲什麼會有人想用!!true
,因爲它會給你true
一次。爲什麼會有人使用!在JavaScript?
由於
是'!! true'是'true',但是'!! 1'和'!!「hello world''也是如此。 – Pointy