Developer postOriginal post (opens in a new tab)

Shortcut for ARRAYINDEX

Version 1.1C adds a new shortcut for ARRAYINDEX.

Previously, random accessing the first entry in MYARRAY would require these lines of code:

ARRAY=MYARRAY
INDEX=0
ARRAYINDEX
MYARRAY="FIRST ENTRY"

With the shortcut, only these lines of code are required:

MYARRAY[0]
MYARRAY="FIRST ENTRY"

Have fun!