📌  相关文章
📜  javascript 检查数组中的重复项 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:33.995000             🧑  作者: Mango

代码示例6
function checkIfDuplicateExists(w){
    return new Set(w).size !== w.length 
}

console.log(
    checkIfDuplicateExists(["a", "b", "c", "a"])
// true
);

console.log(
    checkIfDuplicateExists(["a", "b", "c"]))
//false