Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a variable that I past to a function called comment_test that will sometimes be 0, but it fails because I guess it reads it as false. I get the error 'ReferenceError: Can't find variable: count'.

But, I need to know if the variable is indeed 0 (and not 1, 2, 3, etc). The function works fine with any positive number. How is this achieved or what am I doing wrong? I can't seem to find any info on this.

var test = comment_test(0, true);
share|improve this question
7  
We need more code then what you provided, please post the declaration for comment_test – Nix Jan 21 at 0:27
1  
Why would you not provide us with the code of comment_test? Are we supposed to figure that out to help you? Do we get double the rep from upvotes if we do? – Explosion Pills Jan 21 at 0:29
Hey sorry for not posting more code. I figured this was a more general question about using 0, and not code specific - Im experimenting with what Libert Piou Piou posted below. Failing that I'll post the code Im having the issue with. Thanks for the input. – xtiaan Jan 21 at 0:39

closed as not a real question by undefined, Eric, zzzzBov, VisioN, bensiu Jan 21 at 2:40

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

You should use the strict comparison :

var myVar = 0;
myVar === 0;//returns true
myVar === false;//returns false
share|improve this answer
The strict comparisons worked in my case - thanks! – xtiaan Jan 21 at 0:52

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