Conditionals
Long Form (if/else)
if/else)if (<condition>) { <then-expression> } else { <else-expression> }Example
{
"foo": {
"bar": "baz",
"bong": "selected",
"qux": "not-selected"
}
}Ternary Operator (? :)
? :)Example
Literals and Nesting
Example 1: Literal results
Example 2: Nested ternaries
Notes
Last updated