Q. Which one of the following is correct output for the following given JavaScript code
Code:functionoutputfun(object)
{
var place=object ?object.place: "Italy";
return "clean:"+ place;
}
console.log(outputfun({place:India}));
β
Correct Answer: (C)
clean:India