I have the following code:
var bool:String = "true";
Without an if block or switch statement, how can this be converted into a Boolean object?
|
I have the following code:
Without an if block or switch statement, how can this be converted into a Boolean object? |
|||||
|
|
You can use:
Edit A comment below suggests using
This is just complicating the code for no reason as the evaluation happens in the part:
Using the ternary operator is equivalent to:
|
|||||||||||
|