How to convert a string to Boolean ?
I tried using the constructor Boolean("false"), but it's always true.
|
How to convert a string to Boolean ? I tried using the constructor |
|||||
|
|
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
|
|||
|
|
|
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. |
|||
|
|
will not work because any non-empty string is
works because compared with string represenation |
|||
|
|
|
Actually you don't get the meaning of Boolean method.It always return true if the variable is not null or empty.
If my variable have some value then it will
|
|||
|
|
|
These lines give the following output:
|
||||
|
|
|
See this question for reference: How can I convert a string to boolean in JavaScript? There are a few ways:
or
or
|
|||||
|
|
You can try this:
|
|||||||
|