MCQ
Single Best Answer
Easy
QWhat would the following JavaScript code produce?
function emp(id,name)
{
this.id=id;
this.name=name;
}
e=new emp(103,"Vimal Jaiswal");
document.write(e.id+" "+e.name");
ID: #5012
Javascript Classes MCQ
218 views
Question Info
#5012Q ID
EasyDifficulty
Javascript Classes MCQTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer: Option C
Explanation
An object is created by calling a function and passing it some arguments. The function uses the this keyword to set the values of the object's properties based on the arguments that were passed.
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic