assigning default values to undefined variables
I'm moving from php to JavaScript. What I want to do is assign a value to a variable only if the variable hasn't been assigned yet. In php it would be: if($variable=='') $variable='default value'; I thought the equivalent in javascript would be: if(variable=='')
|