Remove the specified object from the given Array
array from which to remove an object
to be removed
the modified Array let arr = [ "foo", "bar", "baz" ]; // remove "foo" from the array me.utils.array.remove(arr, "foo");
Remove the specified object from the given Array