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());
What is the output of the below JavaScript?
var book = "Head First JavaScript";
alert(book.length);
What is the output of the below JavaScript?
var personObj = {firstname:"Jerome",lastname:"Davin"};
alert(personObj.lastname);