What will be the output of the following program?
var name = "John";
var dob = 15;
console.log("%s was born on %d May, 1987", name, dob)
Correct Answer: John was born on 15 May, 1987
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More Node.js MCQ Questions