get um item de uma matriz de nome, valor JSON

Tenho esta matriz:

var arr = [];
arr.push({name:"k1", value:"abc"});
arr.push({name:"k2", value:"hi"});
arr.push({name:"k3", value:"oa"});

possível obter o valor ou um elemento específico sabendo o nom

algo assim

arr['k2'].value

o

arr.get('k1')

questionAnswers(6)

yourAnswerToTheQuestion