The Date UTC() static method accepts parameters representing the date and time (like the Date constructor) but treats them as UTC. It returns the number of milliseconds since January 1, 1970, 00:00:00 UTC.
const utcDate1 = Date.UTC(96, 1, 2, 3, 4, 5);
console.log(utcDate1);
// 823230245000
// another example
const test = new Date(Date.UTC(2010, 01, 28));
console.log(test.toString());
// "Sat Feb 27 2010 19:00:00 GMT-0500 (Eastern Standard Time)"