How do you loop in reverse decrement?
And (hitting two birds with one stone) get the length of an array in Zscript?
The JavaScript equivalent of:
s = "12345";
o = ""
for (var i = s.length - 1; i >= 0; i--)
{
o+= s[i];
}
>> “54321”