Suche, wenn Wert im Objekt JavaScript vorhanden ist

var exists = Object.keys(obj).some(function(k) {
    return obj[k] === "test1";
});
BashForger