let timeInMilliseconds = 1575909015000
const dateInfo = new Date(timeInMilliseconds)
const formattedDate = dateInfo.toLocaleString() //2019-12-9 10:30:15
dateInfo.toLocaleString("en-US", {weekday: "long"}) // Monday
dateInfo.toLocaleString("en-US", {month: "long"}) // December
dateInfo.toLocaleString("en-US", {day: "numeric"}) // 9
dateInfo.toLocaleString("en-US", {year: "numeric"}) // 2019
dateInfo.toLocaleString("en-US", {hour: "numeric"}) // 10 AM
dateInfo.toLocaleString("en-US", {minute: "numeric"}) // 30
dateInfo.toLocaleString("en-US", {second: "numeric"}) // 15
dateInfo.toLocaleString("en-US", {timeZoneName: "short"}) // 12/9/2019, 10:30:15 AM CST