gpt4 book ai didi

javascript - 找不到 Ruby 数组的 lodash.pull 函数

转载 作者:行者123 更新时间:2023-12-02 14:25:52 25 4
gpt4 key购买 nike

有没有类似 lodash.pull 的实用函数但对于 Ruby 数组呢?

最佳答案

您可以使用删除方法删除出现的单个值:

arr = ['a', 'b', 'c', 'b', 'c', 'd']
arr.delete 'b'

# ['a', 'c', 'c', 'd']

或者您可以使用 - 或 -= 运算符来删除值数组。

arr = ['a', 'b', 'c', 'b', 'c', 'd']
arr -= ['a', 'c']

# ['b', 'b', 'd']

关于javascript - 找不到 Ruby 数组的 lodash.pull 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38245652/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com