📅  最后修改于: 2023-12-03 15:00:01.730000             🧑  作者: Mango
这是一个JavaScript函数。
const justCoolStuff
是一个函数,它接受两个数组 arr1
和 arr2
作为参数,并返回一个过滤后的数组,其中包含 arr1
中所有包含在 arr2
中的元素。
以下是 justCoolStuff
函数的代码实现:
const justCoolStuff = (arr1, arr2) => arr1.filter(item => arr2.includes(item));
justCoolStuff
函数接受两个参数:arr1
和 arr2
。这两个参数都是数组。
justCoolStuff
函数返回一个数组,表示过滤后的结果。
以下是 justCoolStuff
函数的使用示例:
const arr1 = ['javascript', 'html', 'css', 'react'];
const arr2 = ['html', 'css', 'vue'];
const result = justCoolStuff(arr1, arr2);
console.log(result); // ['html', 'css']
justCoolStuff
函数是一个非常简单却非常实用的函数,可以帮助开发人员快速过滤数组。如果您正在开发一个需要过滤数组的应用程序,那么 justCoolStuff
函数就是您需要的功能。