// 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
}
は、私は完全に何!
手段を理解!!options.deep
hereこの構文を見ましたが、なぜ誰もが、それはあなたが再びtrue
与えるため!!true
を使用したいと思います。誰も使ってみませんか? JavaScriptで?私はvue.jsウォッチャーを理解しようとしたが
おかげ
はい '!! true'は' true'ですが、 '!! 1'と' !! "hello world" 'です。 – Pointy