I need to remove an element from the array by index, for example:
arr = [1,2,3,4,5,6]
When removing the index element 3:
arr = [1,2,3]
It needs to remove everything after the index entered including the index.
I tried to do this:...
asked by
13.01.2016 / 14:15