Removes an item from the array
Removes all item references if multi is set to true
true
Example:
import { remove } from "@thalesrc/js-utils/array"; const array = ["a", "b", "c", "a", "b", "c"]; remove(array, "b"); // ["a", "c", "a", "b", "c"] remove(array, "b", true); // ["a", "c", "a", "c"]
Prototype Example:
import "@thalesrc/js-utils/array/proto/remove"; const array = ["a", "b", "c", "a", "b", "c"]; array.remove("b"); // ["a", "c", "a", "b", "c"] array.remove("b", true); // ["a", "c", "a", "c"]
New array
Generated using TypeDoc
Remove
Removes an item from the array
Removes all item references if multi is set to
true
Example:
import { remove } from "@thalesrc/js-utils/array"; const array = ["a", "b", "c", "a", "b", "c"]; remove(array, "b"); // ["a", "c", "a", "b", "c"] remove(array, "b", true); // ["a", "c", "a", "c"]
Prototype Example:
import "@thalesrc/js-utils/array/proto/remove"; const array = ["a", "b", "c", "a", "b", "c"]; array.remove("b"); // ["a", "c", "a", "b", "c"] array.remove("b", true); // ["a", "c", "a", "c"]