Home > @taiyuuki/utils > arr_remove
arr_remove() function
函数 arr_remove 用于从数组中删除指定的值。
Signature:
typescript
declare function arr_remove<T>(arr: T[], value: T): boolean;
declare function arr_remove<T>(arr: T[], value: T): boolean;
Parameters
Parameter | Type | Description |
---|---|---|
arr | T[] | T 类型元素的数组。 |
value | T | 要从数组中删除的值。 |
Returns:
boolean
函数 arr_remove 返回一个布尔值。如果值已成功从数组中删除,则返回“true”;如果在数组中找不到该值,则返回“false”。
Example
ts
const arr = ['a', 'b', 'c']
arr_remove(arr, 'b')
// ['a', 'c']
const arr = ['a', 'b', 'c']
arr_remove(arr, 'b')
// ['a', 'c']