Assigning Values to an Array: Difference between revisions

(tag obsolete (Arrays) and remove {header}s)
(→‎Logo: rm)
Line 341:
Simpler if you don't mind adding an element if it does not already exist:
function writeToArray(array, loc, val) { array[loc] = val; }
 
==[[Logo]]==
make "a {10 20 30}
setitem 1 :a "ten
 
==[[LSE64]]==
Anonymous user