I am able to get the fist parameter iAmDog and the first parameter is also accessed by this, how to pass second parameter iAmCat and print them?
var speak = function (iAmDog, iAmCat) {
console.log(this);
console.log(iAmDog.dogLove);
console.log(iAmDog.dagNormal);
console.log(iAmCat.catLove);
console.log(iAmCat.catNormal);
};
var speakAsDog = { normal: "moof", love: 'woow' };
var speakAsCat = { normal: "meow", love: 'purr' };
speak.call(speakAsDog, speakAsCat);
