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

Can I convert a string representing a boolean value (e.g., 'true', 'false') into a intrinsic type in JavaScript?

I have a hidden form in HTML that is updated based upon a user's selection within a list. This form contains some fields which represent boolean values and are dynamically populated with an intrinsic boolean value. However, once this value is placed into the hidden input field it becomes a string.

The only way I could find to determine the field's boolean value, once it was converted into a string, was to depend upon the literal value of its string representation.

var myValue = document.myForm.IS_TRUE.value;
var isTrueSet = myValue == 'true';

Is there a better way to accomplish this?

share|improve this question

27 Answers

up vote 375 down vote accepted

You should probably be cautious about using these two methods for your specific needs:

var myBool = Boolean("false");  // == true

var myBool = !!"false";  // == true

Any string which isn't the empty string will evaluate to true by using them. Although they're the cleanest methods I can think of concerning to boolean conversion, I think they're not what you're looking for.

About the way you suggested, you could make it stricter by using the identity operator (===), which doesn't make any implicit type conversions when the compared variables have different types, instead of the equality operator (==), which does:

var isTrueSet = (myValue === 'true');
share|improve this answer
45  
myValue === 'true'; is precisely equivalent to myValue == 'true';. There is no benefit in using === over == here. – Tim Down Aug 26 '10 at 11:01
90  
I follow Crockford's advice and use === and !== whenever it makes sense, which is almost always. – guinaps Feb 10 '11 at 15:37
6  
What about "TRUE" in all uppercase, for example? – BMiner Aug 10 '11 at 22:45
1  
@BMiner then convert myValue to lowercase first. – Muhd Dec 23 '11 at 20:20
2  
@guinaps When does it make the most sense? – cciotti Feb 21 '12 at 22:07
show 6 more comments
String.prototype.bool = function() {
    return (/^true$/i).test(this);
};
alert("true".bool());

For those (see the comments) that would like to extend the String object to get this but are worried about enumerability and are worried about clashing with other code that extends the String object:

Object.defineProperty(String.prototype, "com_example_bool", {
    get : function() {
        return (/^(true|1)$/i).test(this);
    }
});
alert("true".com_example_bool);

(Won't work in older browsers of course and Firefox shows false while Opera, Chrome, Safari and IE show true. Bug 720760)

share|improve this answer
6  
Not a good idea to modify the prototype of built-in objects! – DTrejo Jul 15 '11 at 22:20
5  
You can always prefix the function if you're afraid that it'll interfere with some other code. If some code still breaks, that code is just too brittle and should be fixed. If your added function makes the object too heavy where it cause a performance issue for other code, then, obviously you don't want to do that. But, I don't think it's generally a bad idea to extend built-in objects. They also wouldn't be publicly extendable if that was the case. – Shadow2531 Jul 16 '11 at 19:06
1  
1  
You shouldn't modify the prototype – Szymon Wygnański Aug 7 '11 at 9:16
17  
@DTrejo @Szymon I disagree. This is exactly the kind of thing overloading the prototype is for. If you're afraid of it breaking (poor) code that relies on for..in, there are ways to hide properties from enumeration. See Object.defineProperty. – chaiguy Sep 12 '11 at 14:29
show 2 more comments
stringToBoolean: function(string){
	switch(string.toLowerCase()){
		case "true": case "yes": case "1": return true;
		case "false": case "no": case "0": case null: return false;
		default: return Boolean(string);
	}
}
share|improve this answer
10  
Most interesting use and formatting of a switch statement I ever seen. – Rubens Mariuzzo Dec 6 '12 at 14:32

Remember to match case:

var isTrueSet = (myValue.toLowerCase() === 'true');

Also, if it's a form element checkbox, you can also detect if the checkbox is checked:

var isTrueSet = document.myForm.IS_TRUE.checked;

Assuming that if it is checked, it is "set" equal to true. This evaluates as true/false.

share|improve this answer
why would you do a ternary? you already have a boolean there – nickf Nov 5 '08 at 1:21
Because you can? What do you mean by "you already have a boolean there"? – Jared Farrish Nov 5 '08 at 2:09
1  
Doh! toLowerCase. Doh! – Jared Farrish Nov 5 '08 at 2:10
1  
Jared, the === already is a boolean condition, the ternary is redundant. – FlySwat Nov 5 '08 at 2:54
2  
+1 for toLowerCase – user227353 Jul 18 '11 at 15:47
show 1 more comment

How about?

JSON.parse("true");

or with jQuery

$.parseJSON("true");
share|improve this answer
The problem with this is that many potential value generate a parse error which stops JS execution. So running JSON.parse("FALSE") bombs Javascript. The point of the question, I think, is not to simply solve these exact cases, but also be resilient to other cases. – BishopZ Jan 26 at 22:52
Great point BishopZ. I upvoted your solution using a regular expression: /^true$/i.test( myValue ) – Luke Feb 6 at 23:19
@Luke this solution is actually exactly what I needed; well, wrapping it in a try...catch though. I wanted to convert to bool only if it was a boolean value in the string; otherwise, just use the string provided. This works! Thanks. – sfjedi May 15 at 1:00

Your solution is fine.

Using === would just be silly in this case, as the field's value will always be a String.

share|improve this answer
3  
This is the only sensible answer here :) – Bobby Jack Jan 22 '10 at 0:26
9  
Why you think it would be silly to use ===? In terms of performance it would be exactly the same if both types are Strings. Anyway, I rather use === since I always avoid the use of == and !=. Justifications: stackoverflow.com/questions/359494/… – Protron Aug 17 '10 at 19:01

I think this is much universal:

if (String(a) == "true") ...

It goes:

String(true) == "true"     //returns true`
String(false) == "true"    //returns false
String("true") == "true"   //returns true
String("false") == "true"  //returns false
share|improve this answer
4  
When you can receive a string in uppercase or a boolean, then String(a).toLowerCase() === 'true' – Paulo Manuel Santos Feb 29 '12 at 12:49
@PauloManuelSantos this one is truly the best one-liner here :) great! – Dobiatowski Sep 19 '12 at 10:57
Boolean.parse = function (str) {
  switch (str.toLowerCase ()) {
    case "true":
      return true;
    case "false":
      return false;
    default:
      throw new Error ("Boolean.parse: Cannot convert string to boolean.");
  }
};
share|improve this answer
1  
You can use true.toString() instead of "true" to be even more clean :-) – tillda Feb 22 '11 at 11:03

Hands down the easiest way (assuming you string will be 'true' or 'false') is:

var z = 'true';
var y = 'false';
var b = (z === 'true'); // will evaluate to true
var c = (y === 'true'); // will evaluate to false

Always use the === operator instead of the == operator for these types of conversions!

share|improve this answer
2  
What conversion were you talking about? :-) – YMMD May 18 '12 at 0:41
Yep. This is the easiest method. Thanks so much! – Noah David Oct 11 '12 at 17:27
When comparing string in javascript there is no difference between using the == or === operators when not using conversions. Here you are comparing to strings, therefore no type conversions. See stackoverflow.com/questions/359494/… – ars265 Dec 28 '12 at 15:40

use a json map, which map string into a boolean value

function parseBool2( str ){

    var boolmap = { 
        'no'    : false ,
        'NO'    : false ,
        'FALSE' : false ,
        'false' : false,
        'yes'   : true ,
        'YES'   : true ,
        'TRUE'  : true ,
        'true'  : true 
    };

    return ( str in boolmap ) ? boolmap[ str ] :  !!str ;
};

if value in map, it will return value from boolmap , other wise it converts into boolean using operator !!

eg : parseBool2( "no" ); which output false

share|improve this answer

The Boolean object doesn't have a 'parse' method. Boolean("false") returns true, so that won't work. !!"false" also returns true, so that won't work also.

If you want string "true" to return boolean true and string "false" to return boolean "false" then the simplest solution is to use eval(). eval("true") returns true and eval("false") returns false. Keep in mind the performance implications when using eval() though.

share|improve this answer
2  
eval() is a security & malicious code-execution risk. Don't. – Thomas W Aug 14 '12 at 22:42
To understand what's "wrong" (or right) with eval - check out articles like javascriptweblog.wordpress.com/2010/04/19/how-evil-is-eval or search on stackoverflow for 'Javascript eval malware' – GrahamMc Nov 22 '12 at 8:52
I agree that var isTrueSet = (myValue === 'true'); is the best answer. – 10basetom Jan 28 at 7:35

Like @Shadow2531 said, you can't just convert it directly. I'd also suggest that you consider string inputs besides "true" and "false" that are 'truthy' and 'falsey' if your code is going to be reused/used by others. This is what I use:

function parseBoolean(string) {
  switch (String(string).toLowerCase()) {
    case "true":
    case "1":
    case "yes":
    case "y":
      return true;
    case "false":
    case "0":
    case "no":
    case "n":
      return false;
    default:
      //you could throw an error, but 'undefined' seems a more logical reply
      return undefined;
  }
}
share|improve this answer

You need to separate (in your thinking) the value of your selections and the representation of that value.

Pick a point in the JavaScript logic where they need to transition from string sentinels to native type and do a comparison there, preferably where it only gets done once for each value that needs to be converted. Remember to address what needs to happen if the string sentinel is not one the script knows (i.e. do you default to true or to false?)

In other words, yes, you need to depend on the string's value. :-)

share|improve this answer

I've found that using '1' and an empty value '' for boolean values works far more predictably than 'true' or 'false' string values... specifically with html forms since uninitialized/empty values in Dom elements will consistently evaluate to false whereas any value within them evaluates to true.

For instance:

<input type='button' onclick='this.value = tog(this.value);' />

<script type="text/javascript">

    function tog(off) {
        if(off) {
            alert('true, toggle to false');
            return '';
        } else {
            alert('false, toggle to true');
            return '1';
        }
    }   
</script>

Just seemed like an easier road, so far it's been very consistent/easy... perhaps someone can determine a way to break this?

share|improve this answer
if (String(a) == "true"){
  //true block
} else {
  //false block
}
share|improve this answer

@guinaps> Any string which isn't the empty string will evaluate to true by using them.

How about using the String.match() method

var str="true";
var boolStr=Boolean(str.match(/^true$/i)); 

this alone won't get the 1/0 or the yes/no, but it will catch the TRUE/true, as well, it will return false for any string that happens to have "true" as a substring.

EDIT

Below is a function to handle true/false, 1/0, yes/no (case-insensitive)

​function stringToBool(str) {
    var bool;
    if (str.match(/^(true|1|yes)$/i) !== null) {
        bool = true;
    } else if (str.match(/^(false|0|no)*$/i) !== null) {
        bool = false;
    } else {
        bool = null;
        if (console) console.log('"' + str + '" is not a boolean value');
    }
    return bool;
}

stringToBool('1'); // true
stringToBool('No'); // false
stringToBool('falsey'); // null ("falsey" is not a boolean value.)
stringToBool(''); // false
share|improve this answer

The expression you're looking for simply is

/^true$/i.test(myValue)

as in

var isTrueSet = /^true$/i.test(myValue);

This tests myValue against a regular expression , case-insensitive, and doesn't modify the prototype.

Examples:

/^true$/i.test("true"); // true
/^true$/i.test("TRUE"); // true
/^true$/i.test("tRuE"); // true
/^true$/i.test(" tRuE"); // false (notice the space at the beginning)
/^true$/i.test("untrue"); // false (some other solutions here will incorrectly return true
/^true$/i.test("false");// returns false
/^true$/i.test("xyz");  // returns false
share|improve this answer

My take on this question is that it aims to satisfy three objectives:

  • Return true/false for truthy and falsey values, but also return true/false for multiple string values that would be truthy or falsey if they were Booleans instead of strings.
  • Second, provide a resilient interface so that values other than those specified will not fail, but rather return a default value
  • Third, do all this with as little code as possible.

The problem with using JSON is that it fails by causing a Javascript error. This solution is not resilient (though it satisfies 1 and 3):

JSON.parse("FALSE") // fails

This solution is not concise enough:

if(value === "TRUE" || value === "yes" || ...) { return true; }

I am working on solving this exact problem for Typecast.js. And the best solution to all three objectives is this one:

return /^true$/i.test(v);

It works for many cases, does not fail when values like {} are passed in, and is very concise. Also it returns false as the default value rather than undefined or throwing an Error, which is more useful in loosely-typed Javascript development. Bravo to the other answers that suggested it!

share|improve this answer
Just to go back to your objectives, the only problem with your third & best solution is that it does not meet Objective #1 - it will only return true for a value of 'true', but not for any truthy input. In order to make it meet Objective #1, it is only slightly more concise than Solution #2, and far less readable. – JMTyler May 9 at 18:27

If there's some other code that's converting the boolean value to a string, you need to know exactly how that code stores true/false values. Either that or you need to have access to a function that reverses that conversion.

There are infinitely many ways to represent boolean values in strings ("true", "Y", "1", etc.). So you shouldn't rely on some general-purpose string-to-boolean converter, like Boolean(myValue). You need to use a routine that reverses the original boolean-to-string conversion, whatever that is.

If you know that it converts true booleans to "true" strings, then your sample code is fine. Except that you should use === instead of ==, so there's no automatic type conversion.

share|improve this answer

The following would be enough

String.prototype.boolean = function() {
    return "true" == this; 
};

"true".boolean() // returns true "false".boolean() // returns false
share|improve this answer
8  
Modifying the prototype is very bad idea – Szymon Wygnański Aug 7 '11 at 9:18
@SzymonWygnański: i disagree. I do not see any other reason apart from for--in loop and native support for the same functionality by browsers. Reg for-inloop: i cannot think of a case, where for-in loops are really needed in string. Reg native support: we can definitely add a proto prop until native browsers support, if we are not building a framework like - prototype or jquery, etc... More about this by @Kangax(Perfection kills) is here. webcache.googleusercontent.com/… – cypher Dec 18 '12 at 9:19
Consider: we can go even farther: "true".checkbox() would convert to checkbox, or "true".application() would convert to app:D Not only for-in loops fail but the style is wrong here. Where would you look for the code of this "boolean/checkbox/application" definition in a big app? Imagine world where every library would do thinks like that. Isn't it much better to define a class or function: checkbox("true") - it's just cleaner and almost the same amount of letters. You never know IF browsers will support your custom function until it's defined as a standard (like Object.create etc...). – Szymon Wygnański Jan 3 at 20:40

Boolean.parse() does exist in some browser implementations. It's definitely not universal, so if that's something that you need than you shouldn't use this method. But in Chrome, for example (I'm using v21) it works just fine and as one would expect.

share|improve this answer

I've been using this snippet to convert Numbers and Booleans:

var result = !isNaN(value) ? parseFloat(value) : /^\s*(true|false)\s*$/i.exec(value) ? RegExp.$1.toLowerCase() === "true" : value;
share|improve this answer

Building on Steven's answer above, I wrote this function as a generic parser for string input:

parse:
  function (value) {
    switch (value && value.toLowerCase()) {
      case null: return null;
      case "true": return true;
      case "false": return false;
      default: try { return parseFloat(value); } catch (e) { return value; }
    }
  }
share|improve this answer
function returnBoolean(str){

    str=str.toString().toLowerCase();

    if(str=='true' || str=='1' || str=='yes' || str=='y' || str=='on' || str=='+'){
        return(true);
    }
    else if(str=='false' || str=='0' || str=='no' || str=='n' || str=='off' || str=='-'){
        return(false);
    }else{
        return(undefined);
    }
}
share|improve this answer

You can use the 'eval' function to evaluate your boolean literal string

eval("true") // returns true
eval("false") //returns false

share|improve this answer
 var myBool = Boolean.parse("true");

or

var myBool = Boolean("true");

or

var myBool = !!"true";

Not sure if the first one is IE specific.

share|improve this answer
3  
Here is the thing with using Boolean("true"). It is a little misleading because Boolean("false") and Boolean('wtf") evaluate to true as well. Your third answer is very similar to mine. – Kevin Nov 5 '08 at 0:27

Just do a:

var myBool = eval (yourString);

Examples:

alert (eval ("true") == true); // TRUE
alert (eval ("true") == false); // FALSE
alert (eval ("1") == true); // TRUE
alert (eval ("1") == false); // FALSE
alert (eval ("false") == true); // FALSE;
alert (eval ("false") == false); // TRUE
alert (eval ("0") == true); // FALSE
alert (eval ("0") == false); // TRUE
alert (eval ("") == undefined); // TRUE
alert (eval () == undefined); // TRUE

This method handles the empty string and undefined string naturally as if you declare a variable without assigning it a value.

share|improve this answer
6  
-1: Please don't advocate the use of eval (except perhaps for clever hacks and necessity). – Thomas Eding Jan 22 '10 at 0:32
that's a really bad and insecure use of eval. and it's not even clever. -1 – moo Jan 22 '10 at 0:35

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.