function RemoveAt(arr, position){ var items = new Array();if (position >= arr.length)alert("out off the array's max length");items = arr.slice(0, position).concat(arr.slice(position + 1, arr.length));return items;} var itemArray = [{"boxLabel":"97","checked":f...