I'm wondering if there's a shorter way to write this:
var x = 1;
if(y != undefined) x = y;
I initially tried x = y || 1, but that didn't work. What's the correct way to go about this?
|
I'm wondering if there's a shorter way to write this:
I initially tried |
|||
|
|
Note that As vol7ron suggests in the comments, you can also use
|
|||||||||||
|
The parenthesis are not necessary, I just add them because I think it's easier to read this way. |
|||||
|
|
Another way to write it shortly
|
|||
|
|