Think i figured it out. `if (variable == 'true')` ...
# suitescript
k
Think i figured it out.
if (variable == 'true')
is the same as
if (variable)
as well as
if (variable == 'false')
is same as
if (!variable)