Hi Zoho,
I was debugging some code a colleague wrote. I eventually tracked it down to this issue:
He wrote
if((input.Shipping_Status = "Received")
which is not valid syntax.
It should have been.
if((input.Shipping_Status == "Received")
In this situation, I would expect the compiler to throw an error. It should not be possible to write
- if((input.Shipping_Status = "Received")
That would invariably be a syntax error. I'm pretty sure the old app-builder didn't allow this.