javascript set value true if another vlaue exists in one line code example
Example: javascript set variable if not defined
var x = (typeof x === 'undefined') ? your_default_value : x;
var x = (typeof x === 'undefined') ? your_default_value : x;