current datetime is 6 hours behind nodejs

I need to compare current datetime with datetime in database column. In my computer new Date() returns datetime that is 2023-05-21T04:35:07.903Z whereas My computer time is 10:35:07. How can I adjust this ? .

Note : I cannot convert them to string as I need to compare them.
My code :

        console.log("current time", new Date());
        console.log("db time", new Date(results[i].start));

        if ( new Date(results[i].start) >= new Date()){
            ..............
        }