Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Expression
Result

if (

    in.customerName == "Smith",
    45 ,

// else

    36

)

45 if the customer's name is "Smith" but otherwise the value 36.


...