Well done!
You have completed Managing Date and Time in JavaScript: Features and Practical Examples Quiz!
Quiz Question 1 of 5
What would be the output of the following code snippet, considering that your system's current timezone is UTC+5?
const date_1 = new Date(Date.UTC(2022, 7, 15, 12, 0, 0));
const formattedDate = new Intl.DateTimeFormat('en-GB', { timeZone: 'UTC', dateStyle: 'full', timeStyle: 'long' }).format(date_1);
alert(formattedDate);
Choose the correct answer below: