Hi,
In an Arcade statment, I am losing patience on silly syntax in an 'if' statment, with condition to compare the first 3 digits of postal code with a variable stored in an array, as below:
if (Left(city.postal_code,3) == myArray[f]) {The 'if' statment is simply ignored!
But if I hard-code a value, that's works fine:
if (Left(city.postal_code,3) == '332') {
Any guess where the problem is?