Tag: programming languages

Questions Related to programming languages

What is the output of the below JavaScript?


    var currDate = new Date("30 September, 2011");
    alert(currDate.getMonth());
  1. 9

  2. 8

  3. 10

  4. error


Correct Option: B

What is the output of the below JavaScript?


var book = "Head First JavaScript";         
alert(book.length);     
  1. 21

  2. 20

  3. 22

  4. error


Correct Option: A

What is the output of the below JavaScript?


var personObj = {firstname:"Jerome",lastname:"Davin"};          
alert(personObj.lastname);      
  1. Davin

  2. Jerome

  3. error

  4. lastname


Correct Option: A