How to add 1 day to current date in JS (UTC)?

I have the date as follows,

let date = '2024-03-11';

I want to add plus 1 day to above date

let newDate = mew Date(date); -> converting to local date -> 2024-03-10 (becoming -1)
newDate.setDate(newDate.getDate() + 1);

It worked well but the problem is I am getting the local date when I am using new Date() method which is converting my date to 2024-03-10

Can some one help me how to add 1 date to UTC date without getting it converted to local time zone.