snippetjavascriptCritical
How can I convert a string to boolean in JavaScript?
Viewed 0 times
howconvertbooleancanstringjavascript
Problem
Can I convert a string representing a boolean value (e.g., 'true', 'false') into an intrinsic type in JavaScript?
I have a hidden form in HTML that is updated based on 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.
Is there a better way to accomplish this?
I have a hidden form in HTML that is updated based on 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?
Solution
Do:
Use the strict equality operator (
This will set
For making it case-insensitive, try:
Don't:
You should be cautious about using these two methods for your specific needs.
Any string which isn't the empty string will evaluate to
var isTrueSet = (myValue === 'true');
Use the strict equality operator (
===), which doesn't make any implicit type conversions when the compared variables have different types.This will set
isTrueSet to a boolean true if the string is "true" and boolean false if it is string "false" or not set at all.For making it case-insensitive, try:
var isTrueSet = /^true$/i.test(myValue);
// or
var isTrueSet = (myValue?.toLowerCase?.() === 'true');
// or
var isTrueSet = (String(myValue).toLowerCase() === 'true');
Don't:
You should be cautious about using these two methods for your specific needs.
var myBool = Boolean("false"); // evaluates to true
var myBool = !!"false"; // evaluates to 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.Context
Stack Overflow Q#263965, score: 5081
Revisions (0)
No revisions yet.