Returns whether the given value can be converted to true
Optional
the source value to check
whether the given value can be converted to true
isTrue(true); // trueisTrue(1); // trueisTrue('true'); // trueisTrue('yes'); // trueisTrue('foobar'); // falseisTrue(() => true); // true Copy
isTrue(true); // trueisTrue(1); // trueisTrue('true'); // trueisTrue('yes'); // trueisTrue('foobar'); // falseisTrue(() => true); // true
Returns whether the given value can be converted to true