1. ホーム
  2. ジャバスクリプト

[解決済み】Array.push() if does not exist?

2022-03-26 05:49:35

質問

どちらの値も存在しない場合、どのように配列にプッシュすればよいのでしょうか?以下は私の配列です。

[
    { name: "tom", text: "tasty" },
    { name: "tom", text: "tasty" },
    { name: "tom", text: "tasty" },
    { name: "tom", text: "tasty" },
    { name: "tom", text: "tasty" }
]

もう一度、配列にプッシュしようとすると name: "tom" または text: "tasty" でも、どちらもない場合は、次のようにします。 .push()

どうすればいいのでしょうか?

どのように解決するのですか?

Array プロトタイプをカスタムメソッドで拡張することができます。

// check if an element exists in array using a comparer function
// comparer : function(currentElement)
Array.prototype.inArray = function(comparer) { 
    for(var i=0; i < this.length; i++) { 
        if(comparer(this[i])) return true; 
    }
    return false; 
}; 

// adds an element to the array if it does not already exist using a comparer 
// function
Array.prototype.pushIfNotExist = function(element, comparer) { 
    if (!this.inArray(comparer)) {
        this.push(element);
    }
}; 

var array = [{ name: "tom", text: "tasty" }];
var element = { name: "tom", text: "tasty" };
array.pushIfNotExist(element, function(e) { 
    return e.name === element.name && e.text === element.text; 
});