Correct Answer: new Date(1998, 0, 10);
Explanation:
Note: This Question is unanswered, help us to find answer for this one
JavaScript Skill Assessment
Your Skill Level: Poor
Retake Quizzes to improve it
More JavaScript MCQ Questions
Consider the following variable assignments: var a = 1; var b = 2; var c = 3; var r = a & b & c; The value of r is:
What does the following return? Math.max();
What's the output? var test = function (firstName, surname) { this.Name.FirstName = firstName; this.Name.Surname = surname; } test.prototype = { Name: { FirstName: undefined, Surname: undefined } } var b = new test('john', 'doe'); var c = new test('bob', 'templeton'); console.log(b.Name.FirstName + ' ' + b.Name.Surname + ', ' + c.Name.FirstName + ' ' + c.Name.Surname);
What is the value of c? var a = function(){ this.b = 1; } var b = function(){ this.b = new a().b; return 5; } var c = b() + new b();
What is the value of 'x' after the following code runs? var x; x++;
What does let mean in JavaScript?
How many yield keywords can be used in function* functions?
What is the Promise?
What will be logged in the console? let a = { [ 'foo_' + (() => 1)() ]: 2 }; console.log(a);
What's true about the document object in any environment?
JavaScript MCQs | Topic-wise