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.

How to convert a string to Boolean ?

I tried using the constructor Boolean("false"), but it's always true.

share|improve this question
have a look at this, similar previous question with answers Other stack overflow question – Steve Dec 3 '10 at 10:24
possible duplicate of How can I convert a string to boolean in JavaScript? – Kzqai Mar 13 at 15:36

7 Answers

up vote 18 down vote accepted

I would use a simple string comparison here, as far as I know there is no built in function for what you want to do (unless you want to resort to eval... which you don't).

var myBool = myString == "true";
share|improve this answer

Depends on what you see as false in a string.

Empty string, the word false, 0, should all those be false or is only empty false or only the word false.

You probably need to buid your own method to test the string and return true or false to be 100 % sure that it does what you need.

share|improve this answer
javascript:var string="false";alert(Boolean(string)?'FAIL':'WIN')

will not work because any non-empty string is true

javascript:var string="false";alert(string!=false.toString()?'FAIL':'WIN')

works because compared with string represenation

share|improve this answer

Actually you don't get the meaning of Boolean method.It always return true if the variable is not null or empty.

var variable = some value; Boolean(variable);

If my variable have some value then it will return true else return false You can't use Boolean as you think.

share|improve this answer

These lines give the following output:

Boolean(1).toString(); // true
Boolean(0).toString(); // false
share|improve this answer

See this question for reference:

How can I convert a string to boolean in JavaScript?

There are a few ways:

// Watch case sensitivity!
var boolVal = (string == "true");

or

var boolVal = Boolean("false");

or

String.prototype.bool = function() {
    return (/^true$/i).test(this);
};
alert("true".bool());
share|improve this answer
9  
Boolean("false") is actually true – torvin Aug 18 '11 at 13:11

You can try this:

var myBoolean = Boolean.parse(boolString);

share|improve this answer
1  
TypeError: Object function Boolean() { [native code] } has no method 'parse' – Michael Hart Jun 13 '12 at 2:26
It doesn't look like Boolean.parse() is widely available, but it's definitely in current release versions of Chrome (I'm using v21) and it works as expected. – mbeasley Aug 20 '12 at 12:42

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.