AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
~~~ /* arr:要进行操作的数组 val:要删除的值 type: 如果有值,则删除数组中所有含有val值的元素,如果没值或者不指定,则删除必须完全匹配val的值 */ function removeArrayForValue(arr,val,type){ return arr.filter(function (item) { return type? item.indexOf(val) === -1 : item !== val }) } ​ removeArrayForValue(['test','test1','test2','test','aaa'],'test','%') // ["aaa"] removeArrayForValue(['test','test1','test2','test','aaa'],'test') // ["test1", "test2", "aaa"] ~~~