[][src]Module boa::syntax::ast::node::conditional

Structs

ConditionalOp

The conditional (ternary) operator is the only JavaScript operator that takes three operands.

If

The if statement executes a statement if a specified condition is truthy. If the condition is falsy, another statement can be executed.