Conditionals
Syntax
if (<condition>) { <then> } else { <else> }Basic Example
{
"foo": {
"bar": "baz",
"bong": "selected",
"qux": "not-selected"
}
}Elseif Chains
Example
Fizzbuzz with elseif
Literal Results
Nested Conditionals
Ternary Operator
Syntax
Example
Nested Ternary
Notes
Last updated