When I try to understand plugin codes, I often find these kind of declarations but I don't know exactly what it means.
var a = b,c,d;
This is a syntactic shorthand, and identical to:
var a = b; var c; var d;
The first one (a) gets initialized with the value of b, but c and d are uninitialized.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With