Attacklab.wmd_env.buttons=Attacklab.wmd_env.buttons||_4;
what does the || do in this case?
Adds _4 to the array which is Attacklab.wmd_env.buttons?
|
|
what does the || do in this case?
|
||||||||
|
|
|
The From Mozilla's Core JavaScript 1.5 Reference:
So, in this case, if |
|||
|
|
|
The || operator checks whether the value provided on the left side of the expression is false (in a boolean context). If so it returns an alternate value indicated by the right side of the expression. Otherwise it returns the original value. So for example the following code would set 'Foo' to a default value if it is null: Foo = Foo || "Default Value" This is sometimes called the Coalescing operator. It is supported in other languages such as Ruby and Perl. C# has the ?? operator which does the same thing. |
||||
|
|
|
It's a fancy way of writing
It's nice for providing default values. Keep in mind that not only |
||||||
|
|
|
If |
||
|
|