It's the quotations, try this instead
Javascript gets confused the three first characters, "{" is a solitary string.
You can read more about strings here.
let JSONString = `{"eventId":"program-1","eventTimesSelected":{"243759548768171":"2021-11-30T23:00:00Z"}}`
let jsonObject = JSON.parse(JSONString)
console.log(jsonObject)