vote up 1 vote down star
2

Consider this code:

<script type="text/javascript">
  if ('mySuperProperty' in window) 
  {
    alert(window['mySuperProperty']);
  }
  var mySuperProperty = 1;
</script>

Condition in if statement evaluates to true even though mySuperProperty isn't set yet. Why?

Update: Changed title, added <script> tag.

I stole this question from http://dfilatov.blogspot.com/2009/04/javascript.html (Russian)

flag

1  
WHy not check window.mySuperProperty? shorter and more readable imo. – anddoutoi Jun 23 at 7:25
Is that wrapped in a function or simply in <script> tags? – Russ Cam Jun 23 at 7:28
2  
"Checking" window.mySuperProperty is different. If you mean executing something like "if (window.mySuperProperty) {}" then you would simply check for the value of the mySuperProperty variable (that is in this case a property of global object) and not for the existance of it. – Sergey Ilinsky Jun 23 at 7:34
I see no use to check for the very existance of a property in JavaScript imo as it is a dynamic programming language. What´s interesting is if a variable/property is not equal to undefined. As an experiment it´s interesting though. – anddoutoi Jun 23 at 7:48
This is a great example of why I move all var declarations to the top of scope in JavaScript. – Nosredna Jun 23 at 23:01

2 Answers

vote up 9 vote down check

I guess this happens becuase: the JS code gets first parsed and analyzed. Variables and functions get instantiated at this time, but only during execution they will be assigned with their values used in declaratins. This is exactly why you get "undefined" in alert.

link|flag
Right, this explains why "if (window.mySuperProperty)" returns false (because "mySuperProperty" has no value) but "if ('mySuperProperty' in window)" returns true (because "mySuperProperty" does exist). – Steve Harrison Jun 23 at 7:52
vote up 1 vote down

The expression "window.mySuperProperty" checks the value of the mySuperProperty, which is at the time of the alert undefined

On the other hand mySuperProperty in window checks if the window has the mySuperProperty, which is checked in the whole window namespace (after every property name has been set).

Therefor,

if ('mySuperProperty' in window) returns true > the variable exists, but has no value yet if (window.mySuperProperty) returns false > undefined is a Falsy value.

link|flag

Your Answer

Get an OpenID
or

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