Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know that I can test for a javascript variable and then define it if it is undefined, but is there not some way of saying

var setVariable = localStorage.getItem('value') || 0;

seems like a much clearer way, and I'm pretty sure I've seen this in other languages.

share|improve this question
2  
I would say: Exactly like that – José Leal Mar 23 '11 at 18:10
4  
that is not a test for "undefined", it's a test for "falsey" – Alnitak Mar 23 '11 at 18:19

5 Answers

up vote 14 down vote accepted

Yes, JavaScript can do that. Have you tried it?

share|improve this answer
strange, firebug was giving me an error which I though twas related to that line, but now it's cleared up. Must have been something else. Thanks – pedalpete Mar 23 '11 at 18:23

Yes, it can do that, but technically that will assign the default value if the retrieved value is falsey, as opposed to strictly undefined.

undefined is of course a falsey value, but the distinction is worth making, since otherwise code like this could cause undesirable behaviour if you want to default to a truthy value.

var x = x || true;

which will overwrite x if it is false or undefined.

If you want to set to default only if the variable is currently strictly undefined you have to write:

var x = (typeof x === 'undefined') ? def_val : x;

(where def_val is the desired default value)

share|improve this answer
I'm surprised this pattern isn't included in more JS libs. – joemaller Feb 15 at 19:25

Maybe it depends on the browser but it works on my chrome console:

var gfr
- undefined
gfr
- undefined
var x = (gfr || 0)
- 0
x
- 0
share|improve this answer

var setVariable = (typeof localStorage.getItem('value') !== 'undefined' && localStorage.getItem('value')) || 0;

share|improve this answer

Try this function:

  function getItem(var_name){
      var var_value;
      eval('var_value = (typeof('+var_name+')===\'undefined\')?0:'+var_name+';');
     return var_value; 
  }
     var var_defined='i am defined';
     alert(getItem('var_defined'));
     alert(getItem('var_undefined'));
     alert(getItem('var_undefined'));
     var var_undefined='now i am defined';
     alert(getItem('var_undefined'));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.