Hello,
I have this code
ArrayResult.splice(i, 1);
which worked fine and now causes an error (indexoutofbounds). Regarding to my JavaScript documentation, splice can be used as
splice(index, howMany, [element1][, …, elementN])
where [element] is optional. If no third parameter is used, the element should simply be removed. This seems broken, now. If I provide a third parameter, there is no error.
Thanks
Patrick