getVariableValueAsBoolean

fun getVariableValueAsBoolean(var: Any?): Boolean

Treat a variable as an boolean in JavaScript style. Note this function can only handle string, integer and boolean currently. All other data type, if null, return false, not null return true.

Return

the boolean value

Parameters

var

the variable to get value from