The easiest approach which I have used is
var found = arr.find(function(element) {
return element.name === "k1";
});
//If you print the found :
console.log(found);
=> Object { name: "k1", value: "abc" }
//If you need the value
console.log(found.value)
=> "abc"
The similar approach can be used to find the values from the JSON Array based on any input data from the JSON.