Javascript code:
var a = (b) ? b : 40;
It is working, just NetBeans says: "Use the || operator (Column [where the ? is])". I didn't find any explanation.
What is it?
Thanks!
|
Javascript code:
It is working, just NetBeans says: "Use the || operator (Column [where the ? is])". I didn't find any explanation. What is it? Thanks! |
|||||
|
|
If you are just testing for the truthyness of
… which is shorter and (arguably) more obvious. In JavaScript, If you want to see if
|
|||||
|
|
|
The pipes are the |
|||
|
|