Tell us what’s happening:
can’t check for more than two keys passed as arguments and for their values.
Your code so far
function whatIsInAName(collection, source) {
// What's in a name?
var arr = [];
// Only change code below this line
var obj=null;
collection.forEach(element => obj= element);
console.log(obj);
var keys=[];
for(name in obj)
{ keys.push(name);}
if(source.hasOwnProperty(keys[0])){
arr= collection.filter((item)=>{ return (item[keys[0]]===(source[keys[0]]))})
console.log(arr); }
else if(source.hasOwnProperty(keys[1]))
{
arr= collection.filter((item)=>{ return (item[keys[1]]===(source[keys[1]]))})
console.log(arr);
}
// Only change code above this line
return arr;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36
.
Link to the challenge: