Question 10
Consider the following JavaScript code
let Tree = { name: "Oak", size: 5, description: function (size) { return `A ${this.size > 10 ? 'large' : 'medium'} ${this.name} tree.`; }}
const willow = { name: 'Willow'};
const returnedString = Tree.description.call(willow, 15);
console.log(returnedString)What will be the output of the code?
A large Oak tree
A medium Oak tree
A large Willow tree
A medium Willow tree