JavaScript MCQ Javascript Classes MCQ Question #5012
Single Choice 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 244 views
Question Info
#5012Q ID
EasyDifficulty
Javascript Classes MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 103 vimal jaiswal
  • B 103
  • C 103 Vimal Jaiswal
  • D Vimal jaiswal
Correct Answer

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.

Share This Question

Challenge a friend or share with your study group.