I have a specific string that reads "2024-09-19 14:20:45" in a designated time zone, which is "America/Los_Angeles." How would I go about converting this to a datetime string in a different time zone labeled as "timezone2," such as "America/New_York" (which is three hours ahead of Los Angeles) using JavaScript?
In JavaScript, how can I achieve the equivalent of "2024-09-19 17:20:45" for "America/New_York" in the scenario mentioned above?