从数组中移除item
const a1 = [1, 2, 3, 4, 5];arrayRemoveItem(a1, 100); // undefineda1; // [1, 2, 3, 4, 5]arrayRemoveItem(a1, 1); // 1a1; // [2, 3, 4, 5] 复制
const a1 = [1, 2, 3, 4, 5];arrayRemoveItem(a1, 100); // undefineda1; // [1, 2, 3, 4, 5]arrayRemoveItem(a1, 1); // 1a1; // [2, 3, 4, 5]
从数组中移除item