9951 explained code solutions for 126 technologies


luaHow to append an element to array


table.insert(arr, 'val')ctrl + c
table.insert

will append given value to the given array

arr

array to append value to

'val'

value to append to array