From the below array of objects I am trying to return the value of the firstName Key and the country key from the first object found where the language value is set to Python, I tried the find function but I think that's just for values and the tried the filter function below with no joy, any help would be much appreciated. Kind regards, Jon
function getFirstPython(list) {
var python = list.filter(function(el) {
return el.lanaguage = "Python";
});
}